mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8276175: codestrings.validate_vm gtest still broken on ppc64 after JDK-8276046
Reviewed-by: mdoerr
This commit is contained in:
parent
5b4e39863d
commit
b889f2a88a
1 changed files with 5 additions and 3 deletions
|
@ -25,8 +25,6 @@
|
|||
|
||||
#ifndef PRODUCT
|
||||
#ifndef ZERO
|
||||
// Neither ppc nor s390 compilers use code strings.
|
||||
#if !defined(PPC) && !defined(S390)
|
||||
|
||||
#include "asm/macroAssembler.inline.hpp"
|
||||
#include "compiler/disassembler.hpp"
|
||||
|
@ -258,12 +256,16 @@ static void buffer_blob_test()
|
|||
BufferBlob::free(blob);
|
||||
}
|
||||
|
||||
#if defined(PPC) || defined(S390)
|
||||
// Neither ppc nor s390 compiler use code strings
|
||||
TEST_VM(codestrings, DISABLED_validate)
|
||||
#else
|
||||
TEST_VM(codestrings, validate)
|
||||
#endif
|
||||
{
|
||||
code_buffer_test();
|
||||
buffer_blob_test();
|
||||
}
|
||||
|
||||
#endif // not S390 not PPC
|
||||
#endif // not ZERO
|
||||
#endif // not PRODUCT
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue