From kde-commits Sun May 18 21:28:03 2008 From: Maks Orlovich Date: Sun, 18 May 2008 21:28:03 +0000 To: kde-commits Subject: tests/khtmltests/regression/tests/js Message-Id: <1211146083.622299.30818.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=121114609122525 SVN commit 809416 by orlovich: Wire this up for testregression properly. Hmm, seems like a couple of tests are wrong, but we fail some relation() ones.. M +2 -2 exception-sequencing.js --- trunk/tests/khtmltests/regression/tests/js/exception-sequencing.js #809415:809416 @@ -20,8 +20,8 @@ else log = print; -fail = function(msg) {log("FAIL: " + msg) }; -pass = function(msg) { passCount++; log("PASS: " + msg); }; +fail = testFailed; +pass = function(msg) { ++passCount; testPassed(msg); } var unaryOps = ['~', '+', '-']; var binaryOps = ['-', '+', '*', '/', '%', '|', '&', '^', '<', '<=', '>=', '>', '==', '!=', '<<', '>>'];