Home | History | Annotate | Download | only in buildtest

Lines Matching refs:filename

17     for (String filename : args) {
19 if (containsJUnitFailure(filename)) {
21 System.out.println("Failed tests in: " + filename);
22 print(filename);
25 System.out.println("Problem reading file " + filename);
34 * @param filename the name of the file to examine.
36 private static boolean containsJUnitFailure(String filename) throws IOException {
37 BufferedReader in = new BufferedReader(new FileReader(filename));
52 * @param filename the name of the file to print
55 private static void print(String filename) throws IOException {
56 BufferedReader in = new BufferedReader(new FileReader(filename));