Files
OpenBMC/meta-phosphor/recipes-phosphor/interfaces/bmcweb/run-ptest
T
2026-04-23 17:07:55 +08:00

10 lines
122 B
Bash

#!/bin/sh
for i in test/*_test; do
if $i ; then
echo "PASS: $i"
else
echo "FAIL: $i"
fi
done