File tree 2 files changed +7
-5
lines changed
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -664,7 +664,7 @@ class ReservedSpaceRunnable : public TestRunnable {
664
664
665
665
TEST_VM (VirtualSpace, os_reserve_space_concurrent) {
666
666
ReservedSpaceRunnable runnable;
667
- ConcurrentTestRunner testRunner (&runnable, 30 , 15000 );
667
+ ConcurrentTestRunner testRunner (&runnable, 5 , 3000 );
668
668
testRunner.run ();
669
669
}
670
670
@@ -677,6 +677,6 @@ class VirtualSpaceRunnable : public TestRunnable {
677
677
678
678
TEST_VM (VirtualSpace, os_virtual_space_concurrent) {
679
679
VirtualSpaceRunnable runnable;
680
- ConcurrentTestRunner testRunner (&runnable, 30 , 15000 );
680
+ ConcurrentTestRunner testRunner (&runnable, 5 , 3000 );
681
681
testRunner.run ();
682
682
}
Original file line number Diff line number Diff line change @@ -415,9 +415,11 @@ class ReserveMemorySpecialRunnable : public TestRunnable {
415
415
};
416
416
417
417
TEST_VM (os_linux, reserve_memory_special_concurrent) {
418
- ReserveMemorySpecialRunnable runnable;
419
- ConcurrentTestRunner testRunner (&runnable, 30 , 15000 );
420
- testRunner.run ();
418
+ if (UseLargePages) {
419
+ ReserveMemorySpecialRunnable runnable;
420
+ ConcurrentTestRunner testRunner (&runnable, 5 , 3000 );
421
+ testRunner.run ();
422
+ }
421
423
}
422
424
423
425
#endif
You can’t perform that action at this time.
0 commit comments