This repository has been archived by the owner. It is now read-only.
Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
8213269: convert test/hotspot/jtreg/runtime/memory/RunUnitTestsConcur…
…rently to gtest Reviewed-by: iignatyev, coleenp, stuefe
- Loading branch information
Showing
with
638 additions
and 668 deletions.
- +0 −6 src/hotspot/os/aix/os_aix.cpp
- +0 −6 src/hotspot/os/bsd/os_bsd.cpp
- +0 −169 src/hotspot/os/linux/os_linux.cpp
- +0 −52 src/hotspot/os/windows/os_windows.cpp
- +0 −339 src/hotspot/share/memory/virtualspace.cpp
- +0 −16 src/hotspot/share/prims/whitebox.cpp
- +98 −0 test/hotspot/gtest/concurrentTestRunner.inline.hpp
- +342 −1 test/hotspot/gtest/memory/test_virtualspace.cpp
- +178 −1 test/hotspot/gtest/runtime/test_os_linux.cpp
- +20 −2 test/hotspot/gtest/runtime/test_os_windows.cpp
- +0 −1 test/hotspot/jtreg/TEST.groups
- +0 −74 test/hotspot/jtreg/runtime/memory/RunUnitTestsConcurrently.java
- +0 −1 test/lib/sun/hotspot/WhiteBox.java
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -2718,12 +2718,6 @@ bool os::supports_map_sync() { | ||
return false; | ||
} | ||
|
||
bool os::start_debugging(char *buf, int buflen) { | ||
int len = (int)strlen(buf); | ||
char *p = &buf[len]; | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -5535,172 +5535,3 @@ void os::print_memory_mappings(char* addr, size_t bytes, outputStream* st) { | ||
st->cr(); | ||
} | ||
} | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -5790,58 +5790,6 @@ char* os::build_agent_function_name(const char *sym_name, const char *lib_name, | ||
return agent_entry_name; | ||
} | ||
|
||
/* | ||
All the defined signal names for Windows. | ||
|
||
Oops, something went wrong.