mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-15 20:25:17 +03:00
17 lines
539 B
Diff
17 lines
539 B
Diff
Author: Simon Frankenberger <simon-alpine@fraho.eu>
|
|
Subject: Disable failing test
|
|
Upstream: Yes (https://bugs.openjdk.org/browse/JDK-8282306)
|
|
|
|
Disable failing test as workaround
|
|
|
|
--- old/test/hotspot/gtest/runtime/test_os.cpp
|
|
+++ new/test/hotspot/gtest/runtime/test_os.cpp
|
|
@@ -844,7 +844,7 @@
|
|
}
|
|
|
|
TEST_VM(os, is_first_C_frame) {
|
|
-#if !defined(_WIN32) && !defined(ZERO)
|
|
+#if !defined(_WIN32) && !defined(ZERO) && false
|
|
frame invalid_frame;
|
|
EXPECT_TRUE(os::is_first_C_frame(&invalid_frame)); // the frame has zeroes for all values
|
|
|