< prev index next >

test/compiler/codegen/7100757/Test7100757.java

Print this page




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 /**
  26  * @test
  27  * @bug 7100757
  28  * @summary The BitSet.nextSetBit() produces incorrect result in 32bit VM on Sparc
  29  * @library /testlibrary

  30  * @run main/timeout=300 Test7100757
  31  */
  32 
  33 import com.oracle.java.testlibrary.Utils;
  34 import java.util.BitSet;
  35 import java.util.Random;
  36 
  37 public class Test7100757 {
  38 
  39   public static final int NBITS = 256;
  40 
  41   public static void main(String[] args) {
  42 
  43     BitSet bs = new BitSet(NBITS);
  44     Random rnd = Utils.getRandomInstance();
  45     long[] ra = new long[(NBITS+63)/64];
  46 
  47     for(int l=0; l < 5000000; l++) {
  48 
  49       for(int r = 0; r < ra.length; r++) {




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 /**
  26  * @test
  27  * @bug 7100757
  28  * @summary The BitSet.nextSetBit() produces incorrect result in 32bit VM on Sparc
  29  * @library /testlibrary
  30  * @build com.oracle.java.testlibrary.*
  31  * @run main/timeout=300 Test7100757
  32  */
  33 
  34 import com.oracle.java.testlibrary.Utils;
  35 import java.util.BitSet;
  36 import java.util.Random;
  37 
  38 public class Test7100757 {
  39 
  40   public static final int NBITS = 256;
  41 
  42   public static void main(String[] args) {
  43 
  44     BitSet bs = new BitSet(NBITS);
  45     Random rnd = Utils.getRandomInstance();
  46     long[] ra = new long[(NBITS+63)/64];
  47 
  48     for(int l=0; l < 5000000; l++) {
  49 
  50       for(int r = 0; r < ra.length; r++) {


< prev index next >