Skip to content

Commit 007712a

Browse files
committed
picolibc: Use meson test instead of ninja test
This allows to avoid extra messages in output when there are failing tests: FAILED: meson-internal__test /u/ykolerov/.local/bin/meson test --no-rebuild --print-errorlogs ninja: build stopped: subcommand failed. Signed-off-by: Yuriy Kolerov <[email protected]>
1 parent 0b28705 commit 007712a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1164,7 +1164,7 @@ stamps/build-picolibc-perf-test: stamps/configure-picolibc-perf-test
11641164
mkdir -p $(dir $@) && touch $@
11651165

11661166
stamps/check-libc-picolibc-perf: stamps/build-picolibc-perf-test $(SIM_STAMP)
1167-
ninja -C build-picolibc-perf-test test || true
1167+
meson test -C build-picolibc-perf-test || true
11681168
date > $@
11691169

11701170
stamps/configure-picolibc-nano-test: stamps/build-gcc-picolibc-stage2 $(PICOLIBC_SRCDIR) $(PICOLIBC_SRC_GIT)
@@ -1191,7 +1191,7 @@ stamps/build-picolibc-nano-test: stamps/configure-picolibc-nano-test
11911191
mkdir -p $(dir $@) && touch $@
11921192

11931193
stamps/check-libc-picolibc-nano: stamps/build-picolibc-nano-test $(SIM_STAMP)
1194-
ninja -C build-picolibc-nano-test test || true
1194+
meson test -C build-picolibc-nano-test || true
11951195
date > $@
11961196

11971197
#

0 commit comments

Comments
 (0)