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)
```
This commit is contained in:
Brian Gianforcaro 2021-09-05 12:52:40 -07:00 committed by Andreas Kling
parent bb58a4d943
commit 782e7834c3

View file

@ -12,7 +12,7 @@
#include <AK/Vector.h>
#include <stdlib.h>
const size_t NUM_RUNS = 100;
const size_t NUM_RUNS = 10;
struct SortableObject {
int m_key;