Skip to content

Commit f1db3c1

Browse files
committed
ci: skip benchmark fixture tests by default
1 parent 406731b commit f1db3c1

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

run_test.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,12 @@ moon_test() {
77

88
moon_test -p immut "$@"
99
moon_test -p consistency "$@"
10-
moon_test -p perf_support "$@"
11-
moon_test -p perf_runner "$@"
1210
moon_test -p mutable --target wasm-gc "$@"
1311
moon_test -p mutable --target js "$@"
1412
moon_test -p mutable --target native "$@"
1513
moon_test -p mutable --target wasm "$@"
14+
15+
if [ "${LINEAR_ALGEBRA_TEST_BENCH:-0}" = "1" ]; then
16+
moon_test -p perf_support "$@"
17+
moon_test -p perf_runner "$@"
18+
fi

0 commit comments

Comments
 (0)