We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a6afcc commit b666008Copy full SHA for b666008
test/hotspot/gtest/code/test_codestrings.cpp
@@ -25,8 +25,6 @@
25
26
#ifndef PRODUCT
27
#ifndef ZERO
28
-// Neither ppc nor s390 compilers use code strings.
29
-#if !defined(PPC) && !defined(S390)
30
31
#include "asm/macroAssembler.inline.hpp"
32
#include "compiler/disassembler.hpp"
@@ -259,12 +257,16 @@ static void buffer_blob_test()
259
257
BufferBlob::free(blob);
260
258
}
261
+#if defined(PPC) || defined(S390)
+// Neither ppc nor s390 compiler use code strings
262
+TEST_VM(codestrings, DISABLED_validate)
263
+#else
264
TEST_VM(codestrings, validate)
265
+#endif
266
{
267
code_buffer_test();
268
buffer_blob_test();
269
270
-#endif // not S390 not PPC
271
#endif // not ZERO
272
#endif // not PRODUCT
0 commit comments