aboutsummaryrefslogtreecommitdiffstats
path: root/meta-mentor-staging/openembedded-layer/recipes-extended/libmodbus/libmodbus/run-ptest
blob: bd6790a129b59b2b6943bc5e5cdc91bd7e4bda55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

# ---------------------------------------------------------------------------------------------------------------------
# SPDX-License-Identifier: LGPL-2.1-or-later
# ---------------------------------------------------------------------------------------------------------------------

for test in @PTEST_PATH@/tests/*-test; do
    if "$test"; then
        echo "PASS: ${test##*/}"
    else
        echo "FAIL: ${test##*/}"
    fi
done