ref: ffb199a26a0837829f96077aa58a1faa331d5637
parent: 175933d2b17af067905a982804ccd3a77b9d6ea0
author: ISSOtm <[email protected]>
date: Sun Apr 5 20:44:59 EDT 2020
Avoid Useless Use of backticks in rgblink testing
--- a/test/link/test.sh
+++ b/test/link/test.sh
@@ -46,7 +46,7 @@
fi
# Other tests have several linker scripts
- for script in `find . -name "${i%.asm}*.link"`; do
+ find . -name "${i%.asm}*.link" | while read script; do
$RGBLINK -l $script -o $gbtemp $otemp > $outtemp 2>&1
tryDiff ${script%.link}.out $outtemp
rc=$(($? || $rc))