Skip to content

Commit 366ae4d

Browse files
committed
Exclude correct entries in smallest-no-std grep
1 parent e06060d commit 366ae4d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ci/script.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ main() {
3131

3232
# check presence of the `rust_begin_unwind` symbol
3333
diff app.o.nm \
34-
<(cargo nm -- target/thumbv7m-none-eabi/debug/deps/app-*.o | grep '[0-9]* [^n] ')
34+
<(cargo nm -- target/thumbv7m-none-eabi/debug/deps/app-*.o | grep '[0-9]* [^N] ')
3535

3636
edition_check
3737

src/smallest-no-std.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Before linking the crate does contain the panicking symbol.
8383
``` console
8484
$ cargo rustc --target thumbv7m-none-eabi -- --emit=obj
8585

86-
$ cargo nm -- target/thumbv7m-none-eabi/debug/deps/app-*.o | grep '[0-9]* [^n] '
86+
$ cargo nm -- target/thumbv7m-none-eabi/debug/deps/app-*.o | grep '[0-9]* [^N] '
8787
```
8888

8989
``` text

0 commit comments

Comments
 (0)