zephyr/samples/data_structures/min-heap/sample.yaml
Sayooj K Karun fc6f9e23ce samples: lib: min_heap: Add min-heap usage example
Introduce a simple sample application demonstrating the usage of the
min-heap API. The sample performs basic insert and remove operations
and logs the results to the console.

Signed-off-by: Sayooj K Karun <sayooj@aerlync.com>
2025-06-07 13:29:24 +01:00

20 lines
480 B
YAML

# Copyright (c) 2025 Aerlync Labs Inc.
#
# SPDX-License-Identifier: Apache-2.0
sample:
description: zephyr min-heap library application
name: min-heap
tests:
sample.data_structures.min-heap:
tags:
- data_structures
harness: console
integration_platforms:
- native_sim
harness_config:
type: multi_line
ordered: false
regex:
- "Top of heap: key=2 value=400"
- "Found element with key 5 at index 1,removing it..."