From 782e7834c38f1abf5ab6ac9f741a3119c72f947a Mon Sep 17 00:00:00 2001 From: Brian Gianforcaro Date: Sun, 5 Sep 2021 12:52:40 -0700 Subject: [PATCH] Tests: Reduce the execution time of the LibC TestQSort test Executing 100 times vs 10 times doesn't increase test coverage substantial, this API is stable and more iterations is just a waste of time. Without KVM this test is a clear outlier in runtime during CI: ``` START LibC/TestQsort (106/172) PASS LibC/TestQsort (41.233692s) ``` --- Tests/LibC/TestQsort.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/LibC/TestQsort.cpp b/Tests/LibC/TestQsort.cpp index 204d0e6f75..5a194d6b24 100644 --- a/Tests/LibC/TestQsort.cpp +++ b/Tests/LibC/TestQsort.cpp @@ -12,7 +12,7 @@ #include #include -const size_t NUM_RUNS = 100; +const size_t NUM_RUNS = 10; struct SortableObject { int m_key;