mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 01:17:34 +00:00
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:
parent
bb58a4d943
commit
782e7834c3
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@
|
||||||
#include <AK/Vector.h>
|
#include <AK/Vector.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
const size_t NUM_RUNS = 100;
|
const size_t NUM_RUNS = 10;
|
||||||
|
|
||||||
struct SortableObject {
|
struct SortableObject {
|
||||||
int m_key;
|
int m_key;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue