Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
-
Windows, Linux ia32
Description
The following test behaves differently on Harmony and reference java implementation:
import java.util.BitSet;
public class BSTest {
public static void main(String[] args) throws Exception
{ BitSet bs1 = new BitSet(256); BitSet bs2 = new BitSet(256); bs1.set('a'); bs2.set('%'); bs1.andNot(bs2); System.out.println("'a' allowed in bs1: " + bs1.get('a')); }}
Harmony prints:
'a' allowed in bs1: false
while RI prints:
'a' allowed in bs1: true
This bug leads Jetty scenario to fail.
Attachments
Attachments
Issue Links
- blocks
-
HARMONY-4112 [M2] umbrella task for Run Jetty scenario
- Closed
- is duplicated by
-
HARMONY-4214 [classlib][luni] BitSet failure
- Closed