Reduce memleaks tests time by ~30%

This commit is contained in:
Mano 2022-11-30 23:58:11 +00:00
parent 094a64e3d9
commit 1ff0984eea
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ int main(int argc, char *argv[]){
threadpool thpool = thpool_init(num_threads);
thpool_destroy(thpool);
sleep(1); // Sometimes main exits before thpool_destroy finished 100%
sleep(0.5); // Sometimes main exits before thpool_destroy finished 100%
return 0;
}