Skip to content

Commit bfaadb3

Browse files
mruby: allow tests to fail during building (#14179)
Signed-off-by: David Korczynski <[email protected]>
1 parent 4d18299 commit bfaadb3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

projects/mruby/build.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ cd $SRC/mruby
2121
export LD=$CC
2222
export LDFLAGS="$CFLAGS"
2323
rake all
24-
rake test
24+
25+
# This should be allowed to fail. So long as it does not fail in `run_tests.sh`
26+
rake test || true
2527

2628
# build fuzzers
2729
FUZZ_TARGET=$SRC/mruby/oss-fuzz/mruby_fuzzer.c

0 commit comments

Comments
 (0)