8276175: codestrings.validate_vm gtest still broken on ppc64 after JDK-8276046

Reviewed-by: mdoerr
This commit is contained in:
Thomas Stuefe 2021-11-02 13:04:09 +00:00
parent 5b4e39863d
commit b889f2a88a

@ -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