File tree Expand file tree Collapse file tree 3 files changed +3
-13
lines changed
graalpython/com.oracle.graal.python.test/src
com/oracle/graal/python/test/advance Expand file tree Collapse file tree 3 files changed +3
-13
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2020, 2021 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2020, 2022 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* The Universal Permissive License (UPL), Version 1.0
@@ -204,7 +204,7 @@ private Path dumpHeap(MBeanServer server) {
204
204
private MBeanServer doFullGC () {
205
205
// do this a few times to dump a small heap if we can
206
206
MBeanServer server = null ;
207
- for (int i = 0 ; i < 10 ; i ++) {
207
+ for (int i = 0 ; i < 20 ; i ++) {
208
208
System .gc ();
209
209
Runtime .getRuntime ().freeMemory ();
210
210
server = ManagementFactory .getPlatformMBeanServer ();
@@ -215,7 +215,7 @@ private MBeanServer doFullGC() {
215
215
throw new RuntimeException (e );
216
216
}
217
217
try {
218
- Thread .sleep (3000 );
218
+ Thread .sleep (5000 );
219
219
} catch (InterruptedException e1 ) {
220
220
// do nothing
221
221
}
Original file line number Diff line number Diff line change 11
11
*graalpython.lib-python.3.test.test_multiprocessing_main_handling.ForkServerCmdLineTest.test_script_compiled
12
12
*graalpython.lib-python.3.test.test_multiprocessing_main_handling.ForkServerCmdLineTest.test_zipfile
13
13
*graalpython.lib-python.3.test.test_multiprocessing_main_handling.ForkServerCmdLineTest.test_zipfile_compiled
14
- *graalpython.lib-python.3.test.test_multiprocessing_main_handling.SpawnCmdLineTest.test_basic_script
15
- *graalpython.lib-python.3.test.test_multiprocessing_main_handling.SpawnCmdLineTest.test_basic_script_no_suffix
16
- *graalpython.lib-python.3.test.test_multiprocessing_main_handling.SpawnCmdLineTest.test_directory
17
- *graalpython.lib-python.3.test.test_multiprocessing_main_handling.SpawnCmdLineTest.test_directory_compiled
18
- *graalpython.lib-python.3.test.test_multiprocessing_main_handling.SpawnCmdLineTest.test_ipython_workaround
19
- *graalpython.lib-python.3.test.test_multiprocessing_main_handling.SpawnCmdLineTest.test_module_in_package_in_zipfile
20
- *graalpython.lib-python.3.test.test_multiprocessing_main_handling.SpawnCmdLineTest.test_package
21
- *graalpython.lib-python.3.test.test_multiprocessing_main_handling.SpawnCmdLineTest.test_package_compiled
22
- *graalpython.lib-python.3.test.test_multiprocessing_main_handling.SpawnCmdLineTest.test_zipfile
Original file line number Diff line number Diff line change 47
47
*graalpython.lib-python.3.test.test_multiprocessing_spawn.TestWait.test_wait_slow
48
48
*graalpython.lib-python.3.test.test_multiprocessing_spawn.TestWait.test_wait_socket
49
49
*graalpython.lib-python.3.test.test_multiprocessing_spawn.TestWait.test_wait_socket_slow
50
- *graalpython.lib-python.3.test.test_multiprocessing_spawn.TestWait.test_wait_timeout
51
50
*graalpython.lib-python.3.test.test_multiprocessing_spawn.WithProcessesTestBarrier.test_abort
52
51
*graalpython.lib-python.3.test.test_multiprocessing_spawn.WithProcessesTestBarrier.test_abort_and_reset
53
52
*graalpython.lib-python.3.test.test_multiprocessing_spawn.WithProcessesTestBarrier.test_action
You can’t perform that action at this time.
0 commit comments