/hg/icedtea-web: Make output of PAC function tests more jtreg-li...
omajid at icedtea.classpath.org
omajid at icedtea.classpath.org
Thu Mar 10 08:12:50 PST 2011
changeset 79839fc3d5a1 in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=79839fc3d5a1
author: Omair Majid <omajid at redhat.com>
date: Thu Mar 10 11:10:37 2011 -0500
Make output of PAC function tests more jtreg-like to help the
buildbot
The buildbot already has support for parsing the results of jtreg
tests; this changeset makes the output of PAC function tests more
like jtreg's output.
2011-03-10 Omair Majid <omajid at redhat.com>
* tests/netx/pac/pac-funcs-test.js (main): Make test summary
output more jtreg-like. (runTests): Change test output format to
be more jtreg-like.
diffstat:
ChangeLog | 6 ++++++
tests/netx/pac/pac-funcs-test.js | 11 ++++-------
2 files changed, 10 insertions(+), 7 deletions(-)
diffs (51 lines):
diff -r d91d02e798ff -r 79839fc3d5a1 ChangeLog
--- a/ChangeLog Wed Mar 09 13:51:48 2011 -0500
+++ b/ChangeLog Thu Mar 10 11:10:37 2011 -0500
@@ -1,3 +1,9 @@
+2011-03-10 Omair Majid <omajid at redhat.com>
+
+ * tests/netx/pac/pac-funcs-test.js
+ (main): Make test summary output more jtreg-like.
+ (runTests): Change test output format to be more jtreg-like.
+
2011-03-09 Denis Lila <dlila at redhat.com>
* netx/net/sourceforge/jnlp/Parser.java
diff -r d91d02e798ff -r 79839fc3d5a1 tests/netx/pac/pac-funcs-test.js
--- a/tests/netx/pac/pac-funcs-test.js Wed Mar 09 13:51:48 2011 -0500
+++ b/tests/netx/pac/pac-funcs-test.js Thu Mar 10 11:10:37 2011 -0500
@@ -25,17 +25,15 @@
testDateRange();
testTimeRange();
- java.lang.System.out.println(testsFailed + " of " + (testsFailed + testsPassed) + " tests failed");
+ java.lang.System.out.println("Test results: passed: " + testsPassed + "; failed: " + testsFailed + ";");
}
function runTests(name, tests) {
- java.lang.System.out.println("Testing: " + name.name);
var undefined_var;
for ( var i = 0; i < tests.length; i++) {
- java.lang.System.out.print("Test " + (i + 1) + ": ");
var expectedVal = tests[i][0];
var args = tests[i].slice(1);
var returnVal;
@@ -45,12 +43,11 @@
returnVal = e;
}
if (returnVal === expectedVal) {
- java.lang.System.out.println("Passed.");
+ java.lang.System.out.println("Passed: " + name.name + "(" + args.join(", ") + ")");
testsPassed++;
} else {
- java.lang.System.out.println("FAILED.");
- java.lang.System.out.println(name.name + "(" + args.join(", ") + ")");
- java.lang.System.out.println("Expected '" + expectedVal + "' but got '" + returnVal + "'");
+ java.lang.System.out.println("FAILED: " + name.name + "(" + args.join(", ") + ")");
+ java.lang.System.out.println(" Expected '" + expectedVal + "' but got '" + returnVal + "'");
testsFailed++;
}
}
More information about the distro-pkg-dev
mailing list