diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2023-11-14 15:08:07 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2023-11-22 18:23:59 +0200 |
commit | 3c1560e02df0f4910df36dcd146963ef16006040 (patch) | |
tree | d0cb104f580dd6fe6f062d3fd997a16068794f83 /scripts/vsp-lib.sh | |
parent | 38d09b462d90675d49b24e9a6e2612bbc2fb40e5 (diff) |
Some skipped tests print a "skip" message, while other print "skipped".
This leads to some of them not being counted. Standardize on "skip".
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
Diffstat (limited to 'scripts/vsp-lib.sh')
-rwxr-xr-x | scripts/vsp-lib.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vsp-lib.sh b/scripts/vsp-lib.sh index a8898e8..114bc72 100755 --- a/scripts/vsp-lib.sh +++ b/scripts/vsp-lib.sh @@ -1076,7 +1076,7 @@ test_init() { if [ -z $best_mdev ] ; then echo "No device found with feature set \`$features'" | ./logger.sh config >> $logfile - echo "Test requires unavailable feature set \`$features': skipped" >&2 + echo "Test requires unavailable feature set \`$features': skip" >&2 exit 1 fi |