Changeset 309 for trunk/openjdk/hotspot/test
- Timestamp:
- Feb 13, 2012, 10:07:12 PM (14 years ago)
- Location:
- trunk/openjdk
- Files:
-
- 8 edited
- 22 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk
- Property svn:mergeinfo changed
/branches/vendor/oracle/openjdk6/b24 (added) merged: 308 /branches/vendor/oracle/openjdk6/current merged: 307
- Property svn:mergeinfo changed
-
trunk/openjdk/hotspot/test/Makefile
r278 r309 1 1 # 2 # Copyright (c) 1995, 20 09, Oracle and/or its affiliates. All rights reserved.2 # Copyright (c) 1995, 2010, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # … … 79 79 80 80 # Root of all test results 81 ABS_BUILD_ROOT = $(TEST_ROOT)/../build/$(PLATFORM)-$(ARCH) 81 ifdef ALT_OUTPUTDIR 82 ABS_BUILD_ROOT = $(ALT_OUTPUTDIR)/$(PLATFORM)-$(ARCH) 83 else 84 ABS_BUILD_ROOT = $(TEST_ROOT)/../build/$(PLATFORM)-$(ARCH) 85 endif 82 86 ABS_TEST_OUTPUT_DIR = $(ABS_BUILD_ROOT)/testoutput 83 87 -
trunk/openjdk/hotspot/test/compiler/6431242/Test.java
r278 r309 1 1 /* 2 * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved.2 * Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved. 3 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 * -
trunk/openjdk/hotspot/test/compiler/6603011/Test.java
r278 r309 1 1 /* 2 * Copyright (c) 20 09, Oracle and/or its affiliates. All rights reserved.2 * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. 3 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 * … … 109 109 if (quo != quo0 || rem != rem0) { 110 110 if (VERBOSE) { 111 System.out.println(" " + dividend + " / " + divisor() + " = " + 112 quo + ", " + dividend + " % " + divisor() + " = " + rem); 111 System.out.println("Computed: " + dividend + " / " + divisor() + " = " + 112 quo + ", " + dividend + " % " + divisor() + " = " + rem ); 113 System.out.println("expected: " + dividend + " / " + divisor() + " = " + 114 quo0 + ", " + dividend + " % " + divisor() + " = " + rem0); 113 115 // Report sign of rem failure 114 116 if (rem != 0 && (rem ^ dividend) < 0) { … … 169 171 for (int s = 0; s < 64; s += 4) { 170 172 total++; 171 long dividend = i<< s;173 long dividend = ((long)i) << s; 172 174 if (!checkL(dividend)) { 173 175 wrong++; -
trunk/openjdk/hotspot/test/compiler/6857159/Test6857159.java
r278 r309 1 1 /* 2 * Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved.2 * Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved. 3 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 * … … 55 55 56 56 public static void main(String[] args) throws Exception { 57 for (int i = 0; i < 100000; i++) {57 for (int i = 0; i < 20000; i++) { 58 58 Thread t = null; 59 59 switch (i % 3) { -
trunk/openjdk/hotspot/test/compiler/6877254/Test.java
r278 r309 1 1 /* 2 * Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved.2 * Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved. 3 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 * -
trunk/openjdk/hotspot/test/compiler/6895383/Test.java
r278 r309 1 1 /* 2 * Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved.2 * Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved. 3 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 * -
trunk/openjdk/hotspot/test/compiler/6896727/Test.java
r278 r309 1 1 /* 2 * Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved.2 * Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved. 3 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 *
Note:
See TracChangeset
for help on using the changeset viewer.