Browse Source

run-test.sh: use the POSIX '-L 1' for xargs

This allows tests to be run on platforms where '-l'
isn't implemented, like MacOS.
xmkb
Jeff Rizzo 4 years ago committed by Pete Johanson
parent
commit
c0cab57c2d
  1. 2
      app/run-test.sh

2
app/run-test.sh

@ -17,7 +17,7 @@ testcases=$(find $path -name native_posix.keymap -exec dirname \{\} \;)
num_cases=$(echo "$testcases" | wc -l) num_cases=$(echo "$testcases" | wc -l)
if [ $num_cases -gt 1 ]; then if [ $num_cases -gt 1 ]; then
echo "" > ./build/tests/pass-fail.log echo "" > ./build/tests/pass-fail.log
echo "$testcases" | xargs -l -P 4 ./run-test.sh echo "$testcases" | xargs -L 1 -P 4 ./run-test.sh
err=$? err=$?
sort -k2 ./build/tests/pass-fail.log sort -k2 ./build/tests/pass-fail.log
exit $err exit $err

Loading…
Cancel
Save