@@ -51,11 +51,11 @@ main() {
51
51
52
52
# check that the Reset symbol is there
53
53
diff -b app.text.objdump \
54
- <( cargo objdump --bin app -- -d -no-show-raw-insn -no-leading-addr)
54
+ <( cargo objdump --bin app -- -d -- no-show-raw-insn - -no-leading-addr)
55
55
56
56
# check that the reset vector is there and has the right address
57
57
diff -b app.vector_table.objdump \
58
- <( cargo objdump --bin app -- -s -section .vector_table)
58
+ <( cargo objdump --bin app -- -s -- section .vector_table)
59
59
60
60
qemu_check target/thumbv7m-none-eabi/debug/app
61
61
@@ -69,7 +69,7 @@ main() {
69
69
# check that the disassembly matches
70
70
pushd app
71
71
diff -b app.objdump \
72
- <( cargo objdump --bin app -- -d -no-show-raw-insn -no-leading-addr)
72
+ <( cargo objdump --bin app -- -d -- no-show-raw-insn - -no-leading-addr)
73
73
# disabled because of rust-lang/rust#53964
74
74
# edition_check
75
75
popd
@@ -104,7 +104,7 @@ main() {
104
104
# check that the disassembly matches
105
105
pushd app
106
106
diff -b app.objdump \
107
- <( cargo objdump --bin app --release -- -d -no-show-raw-insn -print-imm-hex -no-leading-addr)
107
+ <( cargo objdump --bin app --release -- -d -- no-show-raw-insn -- print-imm-hex - -no-leading-addr)
108
108
diff -b app.vector_table.objdump \
109
109
<( cargo objdump --bin app --release -- -s -j .vector_table)
110
110
edition_check
@@ -125,7 +125,7 @@ main() {
125
125
# check that the disassembly matches
126
126
pushd app
127
127
diff -b release.objdump \
128
- <( cargo objdump --bin app --release -- -d -no-show-raw-insn -print-imm-hex -no-leading-addr)
128
+ <( cargo objdump --bin app --release -- -d -- no-show-raw-insn -- print-imm-hex - -no-leading-addr)
129
129
diff release.vector_table \
130
130
<( cargo objdump --bin app --release -- -s -j .vector_table)
131
131
edition_check
@@ -142,7 +142,7 @@ main() {
142
142
# check that the disassembly matches
143
143
pushd app2
144
144
diff -b release.objdump \
145
- <( cargo objdump --bin app --release -- -d -no-show-raw-insn -print-imm-hex -no-leading-addr)
145
+ <( cargo objdump --bin app --release -- -d -- no-show-raw-insn -- print-imm-hex - -no-leading-addr)
146
146
diff release.vector_table \
147
147
<( cargo objdump --bin app --release -- -s -j .vector_table)
148
148
edition_check
0 commit comments