File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ test_svd() {
10
10
# NOTE we care about errors in svd2rust, but not about errors / warnings in rustfmt
11
11
local cwd=$( pwd)
12
12
pushd $td
13
- $cwd /target/$TARGET /release/svd2rust -i ${1} .svd
13
+ RUST_BACKTRACE=1 $cwd /target/$TARGET /release/svd2rust -i ${1} .svd
14
14
15
15
mv lib.rs src/lib.rs
16
16
@@ -437,7 +437,7 @@ main() {
437
437
# Test MSP430
438
438
pushd $td
439
439
440
- $cwd /target/$TARGET /release/svd2rust --target msp430 -i $td /msp430g2553.svd
440
+ RUST_BACKTRACE=1 $cwd /target/$TARGET /release/svd2rust --target msp430 -i $td /msp430g2553.svd
441
441
mv $td /lib.rs $td /src/lib.rs
442
442
rustfmt $td /src/lib.rs || true
443
443
@@ -448,7 +448,7 @@ main() {
448
448
# Test RISC-V
449
449
pushd $td
450
450
451
- $cwd /target/$TARGET /release/svd2rust --target riscv -i $td /e310x.svd
451
+ RUST_BACKTRACE=1 $cwd /target/$TARGET /release/svd2rust --target riscv -i $td /e310x.svd
452
452
mv $td /lib.rs $td /src/lib.rs
453
453
rustfmt $td /src/lib.rs || true
454
454
You can’t perform that action at this time.
0 commit comments