summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xtests/match_plat.sh21
1 files changed, 13 insertions, 8 deletions
diff --git a/tests/match_plat.sh b/tests/match_plat.sh
index 367abfd..9074362 100755
--- a/tests/match_plat.sh
+++ b/tests/match_plat.sh
@@ -43,18 +43,23 @@ do_test()
fi
}
-do_test all 'all' true
+main()
+{
+ do_test all 'all' true
+
+ do_test dev 'any' true
-do_test dev 'any' true
+ do_test dev 'any all' true
-do_test dev 'any all' true
+ do_test all 'any all' true
-do_test all 'any all' true
+ do_test dev 'dev' true
-do_test dev 'dev' true
+ do_test dev 'ao751h' false
-do_test dev 'ao751h' false
+ do_test all 'any' false
-do_test all 'any' false
+ do_test any 'all' false
-do_test any 'all' false
+ return 0
+}