FW: is this a bug ?
Aleksey Shipilev
shade at redhat.com
Wed Oct 16 08:57:16 UTC 2019
On 10/16/19 10:45 AM, Aleksey Shipilev wrote:
>> Patch is trivial:
>> diff -r 7dce6af27fd5 tests-custom/src/main/java/org/openjdk/jcstress/tests/atomicity/buffers/DirectByteBufferViewsAtomicityTests.java
>> --- a/tests-custom/src/main/java/org/openjdk/jcstress/tests/atomicity/buffers/DirectByteBufferViewsAtomicityTests.java Sun Aug 11 10:37:40 2019 +0200
>> +++ b/tests-custom/src/main/java/org/openjdk/jcstress/tests/atomicity/buffers/DirectByteBufferViewsAtomicityTests.java Thu Aug 15 14:42:49 2019 +0800
>> @@ -52,7 +52,7 @@
>> private final ShortBuffer sb;
>>
>> public MyState() {
>> - b = ByteBuffer.allocate(16);
>> + b = ByteBuffer.allocateDirect(16);
>> b.order(ByteOrder.nativeOrder());
>> ib = b.asIntBuffer();
>> cb = b.asCharBuffer();
I mean, yes, that is a test bug:
http://hg.openjdk.java.net/code-tools/jcstress/rev/4d196b66fcb1
But have you actually see it fail? I don't see how, as test grading accepts all results.
--
Thanks,
-Aleksey
More information about the jcstress-dev
mailing list