Skip to content

Commit 871ab5d

Browse files
committed
check-xrun-injection.sh: Fix bad quoting when injecting xrun
Previous command line doesn't work on some platforms, it shows that there's no $xrun_injection file or directory. This patch fixes the bad quoting. Signed-off-by: Keqiao Zhang <keqiao.zhang@intel.com>
1 parent d6ae791 commit 871ab5d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test-case/check-xrun-injection.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ func_xrun_injection()
7575
exit 1
7676
}
7777
dlogi "XRUN injection: $i"
78-
sudo bash -c "'echo 1 > $xrun_injection'"
78+
sudo bash -c "echo '1' > $xrun_injection"
7979
sleep $interval
8080
(( i++ ))
8181
done

0 commit comments

Comments
 (0)