23
23
24
24
/*
25
25
* @test
26
- * @bug 8331670
26
+ * @bug 8331670 8338383
27
27
* @summary Basic test for --sun-misc-unsafe-memory-access=<value>
28
28
* @library /test/lib
29
29
* @compile TryUnsafeMemoryAccess.java
43
43
class UnsafeMemoryAccessWarnings {
44
44
45
45
/**
46
- * Test default is "allow "
46
+ * Test default is "warn "
47
47
*/
48
- @ Test
49
- void testDefault () throws Exception {
50
- test ("allocateMemory+freeMemory+objectFieldOffset+putLong+getLong+invokeCleaner" )
51
- .shouldHaveExitValue (0 )
52
- .shouldNotContain ("WARNING: A terminally deprecated method in sun.misc.Unsafe has been called" )
53
- .shouldNotContain ("WARNING: sun.misc.Unsafe::allocateMemory" )
54
- .shouldNotContain ("WARNING: sun.misc.Unsafe::freeMemory" )
55
- .shouldNotContain ("WARNING: sun.misc.Unsafe::objectFieldOffset" )
56
- .shouldNotContain ("WARNING: sun.misc.Unsafe::putLong" )
57
- .shouldNotContain ("WARNING: sun.misc.Unsafe::getLong" )
58
- .shouldNotContain ("WARNING: sun.misc.Unsafe::invokeCleaner" );
48
+ @ ParameterizedTest
49
+ @ ValueSource (strings = {
50
+ "allocateMemory+freeMemory" ,
51
+ "objectFieldOffset+putLong+getLong"
52
+ })
53
+ void testDefault (String input ) throws Exception {
54
+ testOneWarning (input );
59
55
}
60
56
61
57
/**
@@ -81,11 +77,19 @@ void testAllow() throws Exception {
81
77
@ ParameterizedTest
82
78
@ ValueSource (strings = {
83
79
"allocateMemory+freeMemory" ,
84
- "objectFieldOffset+putLong+getLong" ,
85
- "invokeCleaner"
80
+ "objectFieldOffset+putLong+getLong"
86
81
})
87
82
void testWarn (String input ) throws Exception {
88
- var output = test (input , "--sun-misc-unsafe-memory-access=warn" ).shouldHaveExitValue (0 );
83
+ testOneWarning (input , "--sun-misc-unsafe-memory-access=warn" );
84
+ }
85
+
86
+ /**
87
+ * Test that a warning is printed by the first memory access method only.
88
+ * @param input comma separated list of Unsafe memory access methods to execute
89
+ * @param vmopts VM options
90
+ */
91
+ private void testOneWarning (String input , String ... vmopts ) throws Exception {
92
+ var output = test (input , vmopts ).shouldHaveExitValue (0 );
89
93
90
94
// should be warning printed for the first memory access method
91
95
String [] methodNames = input .split ("\\ +" );
@@ -99,6 +103,7 @@ void testWarn(String input) throws Exception {
99
103
int index = 1 ;
100
104
while (index < methodNames .length ) {
101
105
String methodName = methodNames [index ++];
106
+ assertNotEquals (firstMethodName , methodName );
102
107
output .shouldNotContain ("WARNING: sun.misc.Unsafe::" + methodName );
103
108
}
104
109
}
0 commit comments