From 2683ace4604287292fe595a75ab67dc9c3f18b7a Mon Sep 17 00:00:00 2001 From: Chang Liu Date: Wed, 16 Oct 2024 20:34:46 -0400 Subject: [PATCH] Increase test timeout --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index da5ebeb7f4..d6f3645384 100644 --- a/Makefile +++ b/Makefile @@ -171,7 +171,7 @@ wasmtest: mkdir -p build/wasm && cd build/wasm &&\ emcmake cmake $(GENERATOR) $(FORCE_COLOR) $(SANITIZER_FLAG) $(WERROR_FLAG) $(RUNTIME_CHECK_FLAG) -DCMAKE_BUILD_TYPE=Release -DBUILD_WASM=TRUE -DBUILD_BENCHMARK=FALSE -DBUILD_TESTS=TRUE -DBUILD_SHELL=FALSE -DENABLE_WERROR=FALSE ../.. && \ cmake --build . --config Release -j $(NUM_THREADS) &&\ - cd ../.. && ctest --test-dir build/wasm/test/ --output-on-failure -j ${TEST_JOBS} --timeout 120 + cd ../.. && ctest --test-dir build/wasm/test/ --output-on-failure -j ${TEST_JOBS} --timeout 600 # Other misc build targets benchmark: