From d91eacb576c90a4ef68a95ab2aa1c7fbbe094d8e Mon Sep 17 00:00:00 2001 From: Wen HU Date: Tue, 5 Jan 2021 19:38:57 -0500 Subject: [PATCH] use "--retry 1" to smooth out abnormal testing behavior for now --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5f099abf5a..113a22b738 100644 --- a/Makefile +++ b/Makefile @@ -115,7 +115,7 @@ test_irbuild: install .PHONY: test_ourboros test_ourboros: libcore - python3 test/main.py test//testsuite/ouroboros --test_cfg=test/testsuite/ouroboros/test.cfg --timeout=180 -j20 --fail_exit -pFAIL + python3 test/main.py test//testsuite/ouroboros --test_cfg=test/testsuite/ouroboros/test.cfg --timeout=180 -j20 --retry 1 --fail_exit -pFAIL .PHONY: testall testall: test_irbuild test_ourboros -- Gitee