Skip to content

Commit 35bbcf1

Browse files
committed
[ci] fix tidy warning.
1 parent 7cac7b6 commit 35bbcf1

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/test/run-make/thumb-none-qemu/script.sh

+4-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ pushd $WORK_DIR
88
rm -rf $CRATE || echo OK
99
cp -a $HERE/example .
1010
pushd $CRATE
11-
env RUSTFLAGS="-C linker=arm-none-eabi-ld -C link-arg=-Tlink.x" $CARGO run --target $TARGET | grep "x = 42"
12-
env RUSTFLAGS="-C linker=arm-none-eabi-ld -C link-arg=-Tlink.x" $CARGO run --target $TARGET --release | grep "x = 42"
11+
env RUSTFLAGS="-C linker=arm-none-eabi-ld -C link-arg=-Tlink.x" \
12+
$CARGO run --target $TARGET | grep "x = 42"
13+
env RUSTFLAGS="-C linker=arm-none-eabi-ld -C link-arg=-Tlink.x" \
14+
$CARGO run --target $TARGET --release | grep "x = 42"
1315
popd
1416
popd

0 commit comments

Comments
 (0)