From ffb199a26a0837829f96077aa58a1faa331d5637 Mon Sep 17 00:00:00 2001 From: ISSOtm Date: Mon, 6 Apr 2020 00:44:59 +0200 Subject: [PATCH] Avoid Useless Use of backticks in rgblink testing --- test/link/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/link/test.sh b/test/link/test.sh index 8295b643..d0da25ee 100755 --- a/test/link/test.sh +++ b/test/link/test.sh @@ -46,7 +46,7 @@ for i in *.asm; do 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))