From 54a91a1b99896ee7e5c6b4d8e4012a808d3241ee Mon Sep 17 00:00:00 2001 From: Mark McCaskey Date: Mon, 20 May 2019 17:56:43 -0700 Subject: [PATCH] make wasi regression tests single threaded --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2206d48aabf..ba89c7e4f03 100644 --- a/Makefile +++ b/Makefile @@ -70,10 +70,10 @@ test-emscripten-singlepass: cargo test --manifest-path lib/emscripten/Cargo.toml --features singlepass -- --test-threads=1 $(runargs) test-wasi-clif: - cargo test --manifest-path lib/wasi/Cargo.toml --features "clif" -- $(runargs) + cargo test --manifest-path lib/wasi/Cargo.toml --features "clif" -- --test-threads=1 $(runargs) test-wasi-singlepass: - cargo test --manifest-path lib/wasi/Cargo.toml --features "singlepass" -- $(runargs) + cargo test --manifest-path lib/wasi/Cargo.toml --features "singlepass" -- --test-threads=1 $(runargs) singlepass-debug-release: cargo +nightly build --features backend:singlepass,debug --release