mirror of
https://github.com/apache/nuttx.git
synced 2026-05-25 01:39:44 +08:00
tools/testbuild.sh: Allow spaces in comments
This commit is contained in:
committed by
Xiang Xiao
parent
01c91e8af8
commit
35e1aa82cb
+2
-2
@@ -131,7 +131,7 @@ fi
|
||||
|
||||
export APPSDIR
|
||||
|
||||
testlist=`grep -v "^-" $testfile || true`
|
||||
testlist=`grep -v -E "^(-|#)" $testfile || true`
|
||||
blacklist=`grep "^-" $testfile || true`
|
||||
|
||||
cd $nuttx || { echo "ERROR: failed to CD to $nuttx"; exit 1; }
|
||||
@@ -259,7 +259,7 @@ for line in $testlist; do
|
||||
for i in ${list}; do
|
||||
dotest $i${line/$dir/}
|
||||
done
|
||||
elif [ "X$firstch" != "X#" ]; then
|
||||
else
|
||||
dotest $line
|
||||
fi
|
||||
done
|
||||
|
||||
Reference in New Issue
Block a user