8048882: Some regression tests are not robust with VM output
Reviewed-by: kvn, iignatyev
This commit is contained in:
parent
db4aa1aa54
commit
66ce40ebe8
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -27,163 +27,195 @@
|
||||
* @bug 6890943
|
||||
* @summary JVM mysteriously gives wrong result on 64-bit 1.6 VMs in hotspot mode.
|
||||
*
|
||||
* @run shell/timeout=240 Test6890943.sh
|
||||
* @run main/othervm/timeout=240 Test6890943
|
||||
*/
|
||||
import java.util.*;
|
||||
|
||||
import java.io.*;
|
||||
import java.util.regex.*;
|
||||
import java.nio.file.Path;
|
||||
import java.nio.file.Paths;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import java.util.Scanner;
|
||||
|
||||
public class Test6890943 {
|
||||
public static final boolean AIR = true, ROCK = false;
|
||||
public static void main(String[] args) {
|
||||
new Test6890943().go();
|
||||
}
|
||||
public static final boolean AIR = true, ROCK = false;
|
||||
private static final Path PATH = Paths.get(System.getProperty("test.src", "."));
|
||||
private static final Path INPUT_FILE = PATH.resolve("input6890943.txt");
|
||||
private static final Path GOLDEN_FILE = PATH.resolve("output6890943.txt");
|
||||
|
||||
int r, c, f, t;
|
||||
boolean[][] grid;
|
||||
|
||||
public void go() {
|
||||
Scanner s = new Scanner(System.in);
|
||||
s.useDelimiter("\\s+");
|
||||
int T = s.nextInt();
|
||||
for (t = 0 ; t < T ; t++) {
|
||||
r = s.nextInt(); c = s.nextInt(); f = s.nextInt();
|
||||
grid = new boolean[r][c];
|
||||
for (int x = 0 ; x < r ; x++) {
|
||||
String line = s.next();
|
||||
for (int y = 0 ; y < c ; y++) grid[x][y] = line.charAt(y) == '.';
|
||||
}
|
||||
int digs = solve();
|
||||
String res = digs == -1 ? "No" : "Yes " + digs;
|
||||
System.out.printf("Case #%d: %s\n", t+1, res);
|
||||
public static void main(String[] args) {
|
||||
new Test6890943().go();
|
||||
}
|
||||
}
|
||||
|
||||
Map<Integer, Integer> M = new HashMap<Integer, Integer>();
|
||||
int r, c, f, t;
|
||||
boolean[][] grid;
|
||||
|
||||
private int solve() {
|
||||
M = new HashMap<Integer, Integer>();
|
||||
M.put(calcWalkingRange(0, 0), 0);
|
||||
for (int digDown = 0 ; digDown < r ; digDown++) {
|
||||
Map<Integer, Integer> tries = new HashMap<Integer, Integer>();
|
||||
for (Map.Entry<Integer, Integer> m : M.entrySet()) {
|
||||
int q = m.getKey();
|
||||
if (depth(q) != (digDown)) continue;
|
||||
if (stuck(q)) continue;
|
||||
tries.put(q, m.getValue());
|
||||
}
|
||||
|
||||
for (Map.Entry<Integer, Integer> m : tries.entrySet()) {
|
||||
int q = m.getKey();
|
||||
int fallLeftDelta = 0, fallRightDelta = 0;
|
||||
//fall left
|
||||
int fallLeft = fall(digDown, start(q));
|
||||
if (fallLeft > 0) {
|
||||
fallLeftDelta = 1;
|
||||
if (fallLeft <= f) addToM(calcWalkingRange(digDown+fallLeft, start(q)), m.getValue());
|
||||
public void go() {
|
||||
Scanner in, golden;
|
||||
try {
|
||||
in = new Scanner(new FileInputStream(INPUT_FILE.toFile()));
|
||||
golden = new Scanner(new FileInputStream(GOLDEN_FILE.toFile()));
|
||||
} catch (FileNotFoundException e) {
|
||||
throw new RuntimeException("TEST failure: can't open test file", e);
|
||||
}
|
||||
in.useDelimiter("\\s+");
|
||||
golden.useDelimiter("\\s+");
|
||||
|
||||
//fall right
|
||||
int fallRight = fall(digDown, end(q));
|
||||
if (fallRight > 0) {
|
||||
fallRightDelta = 1;
|
||||
|
||||
if (fallRight <= f) addToM(calcWalkingRange(digDown+fallRight, end(q)), m.getValue());
|
||||
}
|
||||
|
||||
for (int p = start(q) + fallLeftDelta ; p <= end(q) - fallRightDelta ; p++) {
|
||||
//goLeft
|
||||
for (int digSpot = p ; digSpot > start(q) +fallLeftDelta ; digSpot--) {
|
||||
int fallDown = 1+fall(digDown+1, digSpot);
|
||||
if (fallDown <= f) {
|
||||
if (fallDown == 1) {
|
||||
addToM(calcWalkingRange(digDown + 1, digSpot, digSpot, p), m.getValue() + Math.abs(digSpot-p)+1);
|
||||
} else {
|
||||
addToM(calcWalkingRange(digDown + fallDown, digSpot), m.getValue() + Math.abs(digSpot-p)+1);
|
||||
}
|
||||
int T = in.nextInt();
|
||||
for (t = 0; t < T; t++) {
|
||||
r = in.nextInt();
|
||||
c = in.nextInt();
|
||||
f = in.nextInt();
|
||||
grid = new boolean[r][c];
|
||||
for (int x = 0; x < r; x++) {
|
||||
String line = in.next();
|
||||
for (int y = 0; y < c; y++) {
|
||||
grid[x][y] = line.charAt(y) == '.';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//goRight
|
||||
for (int digSpot = p ; digSpot < end(q)-fallRightDelta ;digSpot++) {
|
||||
int fallDown = 1+fall(digDown+1, digSpot);
|
||||
if (fallDown <= f) {
|
||||
if (fallDown == 1) {
|
||||
addToM(calcWalkingRange(digDown + 1, digSpot, p, digSpot), m.getValue() + Math.abs(digSpot-p)+1);
|
||||
} else {
|
||||
addToM(calcWalkingRange(digDown + fallDown, digSpot), m.getValue() + Math.abs(digSpot-p)+1);
|
||||
}
|
||||
int digs = solve();
|
||||
String result = "Case #" + (t + 1) + ": " + (digs == -1 ? "No" : "Yes " + digs);
|
||||
System.out.println(result);
|
||||
// Compare with golden string from the file
|
||||
String goldenStr = golden.nextLine();
|
||||
if (!result.equals(goldenStr)) {
|
||||
System.err.println("FAIL: strings are not equal\n"
|
||||
+ "-- Result: " + result + "\n"
|
||||
+ "-- Golden: " + goldenStr);
|
||||
throw new RuntimeException("FAIL: Result string is not equal to the golden");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
int result = Integer.MAX_VALUE;
|
||||
for (Map.Entry<Integer, Integer> m : M.entrySet()) {
|
||||
if (depth(m.getKey()) == r-1) result = Math.min(m.getValue(), result);
|
||||
Map<Integer, Integer> M = new HashMap<Integer, Integer>();
|
||||
|
||||
private int solve() {
|
||||
M = new HashMap<Integer, Integer>();
|
||||
M.put(calcWalkingRange(0, 0), 0);
|
||||
for (int digDown = 0; digDown < r; digDown++) {
|
||||
Map<Integer, Integer> tries = new HashMap<Integer, Integer>();
|
||||
for (Map.Entry<Integer, Integer> m : M.entrySet()) {
|
||||
int q = m.getKey();
|
||||
if (depth(q) != (digDown)) continue;
|
||||
if (stuck(q)) continue;
|
||||
tries.put(q, m.getValue());
|
||||
}
|
||||
|
||||
for (Map.Entry<Integer, Integer> m : tries.entrySet()) {
|
||||
int q = m.getKey();
|
||||
int fallLeftDelta = 0, fallRightDelta = 0;
|
||||
//fall left
|
||||
int fallLeft = fall(digDown, start(q));
|
||||
if (fallLeft > 0) {
|
||||
fallLeftDelta = 1;
|
||||
if (fallLeft <= f) addToM(calcWalkingRange(digDown + fallLeft, start(q)), m.getValue());
|
||||
}
|
||||
|
||||
//fall right
|
||||
int fallRight = fall(digDown, end(q));
|
||||
if (fallRight > 0) {
|
||||
fallRightDelta = 1;
|
||||
|
||||
if (fallRight <= f) addToM(calcWalkingRange(digDown + fallRight, end(q)), m.getValue());
|
||||
}
|
||||
|
||||
for (int p = start(q) + fallLeftDelta; p <= end(q) - fallRightDelta; p++) {
|
||||
//goLeft
|
||||
for (int digSpot = p; digSpot > start(q) + fallLeftDelta; digSpot--) {
|
||||
int fallDown = 1 + fall(digDown + 1, digSpot);
|
||||
if (fallDown <= f) {
|
||||
if (fallDown == 1) {
|
||||
addToM(calcWalkingRange(digDown + 1, digSpot, digSpot, p),
|
||||
m.getValue() + Math.abs(digSpot - p) + 1);
|
||||
} else {
|
||||
addToM(calcWalkingRange(digDown + fallDown, digSpot),
|
||||
m.getValue() + Math.abs(digSpot - p) + 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//goRight
|
||||
for (int digSpot = p; digSpot < end(q) - fallRightDelta; digSpot++) {
|
||||
int fallDown = 1 + fall(digDown + 1, digSpot);
|
||||
if (fallDown <= f) {
|
||||
if (fallDown == 1) {
|
||||
addToM(calcWalkingRange(digDown + 1, digSpot, p, digSpot),
|
||||
m.getValue() + Math.abs(digSpot - p) + 1);
|
||||
} else {
|
||||
addToM(calcWalkingRange(digDown + fallDown, digSpot),
|
||||
m.getValue() + Math.abs(digSpot - p) + 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
int result = Integer.MAX_VALUE;
|
||||
for (Map.Entry<Integer, Integer> m : M.entrySet()) {
|
||||
if (depth(m.getKey()) == r - 1) result = Math.min(m.getValue(), result);
|
||||
}
|
||||
|
||||
if (result == Integer.MAX_VALUE) return -1;
|
||||
return result;
|
||||
}
|
||||
|
||||
if (result == Integer.MAX_VALUE) return -1;
|
||||
return result;
|
||||
}
|
||||
|
||||
private void addToM(int q, int i) {
|
||||
Integer original = M.get(q);
|
||||
if ( original == null ) M.put(q, i);
|
||||
else M.put(q, Math.min(original, i));
|
||||
}
|
||||
|
||||
private int fall(int row, int column) {
|
||||
int res = 0;
|
||||
for ( int p = row+1 ; p < r ; p++) {
|
||||
if (grid[p][column] == AIR) res++;
|
||||
else break;
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
||||
private boolean stuck(int q) {
|
||||
return start(q) == end(q);
|
||||
}
|
||||
|
||||
private int depth(int q) {
|
||||
return q % 50;
|
||||
}
|
||||
|
||||
private int start(int q) {
|
||||
return q / (50*50);
|
||||
}
|
||||
|
||||
private int end(int q) {
|
||||
return (q / 50) % 50;
|
||||
}
|
||||
|
||||
private int calcWalkingRange(int depth, int pos) {
|
||||
return calcWalkingRange(depth, pos, Integer.MAX_VALUE, Integer.MIN_VALUE);
|
||||
}
|
||||
|
||||
private int calcWalkingRange(int depth, int pos, int airOverrideStart, int airOverrideEnd) {
|
||||
int left = pos, right = pos;
|
||||
if (depth >= r) return (c-1)*50 + depth;
|
||||
|
||||
while (left > 0) {
|
||||
if (grid[depth][left-1] == ROCK && (left-1 < airOverrideStart || left-1 > airOverrideEnd)) break;
|
||||
if (depth < r-1 && grid[depth+1][left-1] == AIR) {
|
||||
left--;
|
||||
break;
|
||||
}
|
||||
left--;
|
||||
}
|
||||
while (right < c-1) {
|
||||
if (grid[depth][right+1] == ROCK && (right+1 < airOverrideStart || right+1 > airOverrideEnd)) break;
|
||||
if (depth < r-1 && grid[depth+1][right+1] == AIR) {
|
||||
right++;
|
||||
break;
|
||||
}
|
||||
right++;
|
||||
private void addToM(int q, int i) {
|
||||
Integer original = M.get(q);
|
||||
if (original == null) M.put(q, i);
|
||||
else M.put(q, Math.min(original, i));
|
||||
}
|
||||
|
||||
return left *50*50 + right*50 + depth;
|
||||
}
|
||||
private int fall(int row, int column) {
|
||||
int res = 0;
|
||||
for (int p = row + 1; p < r; p++) {
|
||||
if (grid[p][column] == AIR) res++;
|
||||
else break;
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
||||
private boolean stuck(int q) {
|
||||
return start(q) == end(q);
|
||||
}
|
||||
|
||||
private int depth(int q) {
|
||||
return q % 50;
|
||||
}
|
||||
|
||||
private int start(int q) {
|
||||
return q / (50 * 50);
|
||||
}
|
||||
|
||||
private int end(int q) {
|
||||
return (q / 50) % 50;
|
||||
}
|
||||
|
||||
private int calcWalkingRange(int depth, int pos) {
|
||||
return calcWalkingRange(depth, pos, Integer.MAX_VALUE, Integer.MIN_VALUE);
|
||||
}
|
||||
|
||||
private int calcWalkingRange(int depth, int pos, int airOverrideStart, int airOverrideEnd) {
|
||||
int left = pos, right = pos;
|
||||
if (depth >= r) return (c - 1) * 50 + depth;
|
||||
|
||||
while (left > 0) {
|
||||
if (grid[depth][left - 1] == ROCK && (left - 1 < airOverrideStart || left - 1 > airOverrideEnd)) break;
|
||||
if (depth < r - 1 && grid[depth + 1][left - 1] == AIR) {
|
||||
left--;
|
||||
break;
|
||||
}
|
||||
left--;
|
||||
}
|
||||
while (right < c - 1) {
|
||||
if (grid[depth][right + 1] == ROCK && (right + 1 < airOverrideStart || right + 1 > airOverrideEnd)) break;
|
||||
if (depth < r - 1 && grid[depth + 1][right + 1] == AIR) {
|
||||
right++;
|
||||
break;
|
||||
}
|
||||
right++;
|
||||
}
|
||||
|
||||
return left * 50 * 50 + right * 50 + depth;
|
||||
}
|
||||
}
|
||||
|
@ -1,60 +0,0 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
#
|
||||
# This code is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the GNU General Public License version 2 only, as
|
||||
# published by the Free Software Foundation.
|
||||
#
|
||||
# This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
# version 2 for more details (a copy is included in the LICENSE file that
|
||||
# accompanied this code).
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License version
|
||||
# 2 along with this work; if not, write to the Free Software Foundation,
|
||||
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
#
|
||||
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
# or visit www.oracle.com if you need additional information or have any
|
||||
# questions.
|
||||
#
|
||||
#
|
||||
## some tests require path to find test source dir
|
||||
if [ "${TESTSRC}" = "" ]
|
||||
then
|
||||
TESTSRC=${PWD}
|
||||
echo "TESTSRC not set. Using "${TESTSRC}" as default"
|
||||
fi
|
||||
echo "TESTSRC=${TESTSRC}"
|
||||
## Adding common setup Variables for running shell tests.
|
||||
. ${TESTSRC}/../../test_env.sh
|
||||
|
||||
|
||||
set -x
|
||||
|
||||
cp ${TESTSRC}/Test6890943.java .
|
||||
cp ${TESTSRC}/input6890943.txt .
|
||||
cp ${TESTSRC}/output6890943.txt .
|
||||
cp ${TESTSRC}/Test6890943.sh .
|
||||
|
||||
${COMPILEJAVA}/bin/javac ${TESTJAVACOPTS} -d . Test6890943.java
|
||||
|
||||
${TESTJAVA}/bin/java -XX:-PrintVMOptions -XX:+IgnoreUnrecognizedVMOptions ${TESTVMOPTS} Test6890943 < input6890943.txt > pretest.out 2>&1
|
||||
|
||||
# This test sometimes tickles an unrelated performance warning that interferes with diff.
|
||||
grep -v 'warning: Performance bug: SystemDictionary' pretest.out > test.out
|
||||
|
||||
diff output6890943.txt test.out
|
||||
|
||||
result=$?
|
||||
if [ $result -eq 0 ]
|
||||
then
|
||||
echo "Passed"
|
||||
exit 0
|
||||
else
|
||||
echo "Failed"
|
||||
exit 1
|
||||
fi
|
Loading…
x
Reference in New Issue
Block a user