From ac01d2468affc4d6d207a7282ed204b7bf3b6895 Mon Sep 17 00:00:00 2001 From: Stavros Passas Date: Mon, 16 Jan 2017 15:41:04 +0000 Subject: rtems-test-check: Fix to properly process excludes Closes #2867. --- tools/build/rtems-test-check | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/build/rtems-test-check b/tools/build/rtems-test-check index e02f8e939e..108b7881c2 100755 --- a/tools/build/rtems-test-check +++ b/tools/build/rtems-test-check @@ -32,7 +32,11 @@ done case ${mode} in exclude) - output=${tests} + if test -f $testdata; then + output="" + else + output="${tests}" + fi ;; flags) if [ $test_count != 1 ]; then -- cgit v1.2.3