From 3f44eb8124bab14373b37d882d08470a2664bb08 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 6 Oct 2022 09:07:03 +0200 Subject: [PATCH] tests/Makefile: remove run time stats from ci-test The ci-test is the normal makefile target invoked in CI jobs. This has been using the -r option to runtests.pl since a long time, but I find that it mostly just adds many lines to the test output report without anyone caring much about those stats. Remove it. Closes #9656 --- tests/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index 62d1ba38c2..6fab244360 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -75,7 +75,7 @@ TEST_E = -a -e TEST_NF = -a -p !flaky # special CI target derived from nonflaky with CI-specific flags -TEST_CI = $(TEST_NF) -r -rm +TEST_CI = $(TEST_NF) -rm endif # make sure that PERL is pointing to an executable -- 2.47.3