From 01cd1f5867a8357d0ca757113a1efbe1f1c27c81 Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Mon, 22 Apr 2013 15:11:35 -0600 Subject: [PATCH] adding torture test runner --- whalesong/repl-prototype/htdocs/tests-base.js | 2 +- .../repl-prototype/htdocs/torture-tests.html | 24 +++++++++++++++++++ .../repl-prototype/htdocs/torture-tests.js | 22 +++++++++++++++++ 3 files changed, 47 insertions(+), 1 deletion(-) create mode 100644 whalesong/repl-prototype/htdocs/torture-tests.html create mode 100644 whalesong/repl-prototype/htdocs/torture-tests.js diff --git a/whalesong/repl-prototype/htdocs/tests-base.js b/whalesong/repl-prototype/htdocs/tests-base.js index 30fe3e2..f82510e 100644 --- a/whalesong/repl-prototype/htdocs/tests-base.js +++ b/whalesong/repl-prototype/htdocs/tests-base.js @@ -4262,7 +4262,7 @@ jQuery(document).ready(function() { window.plt.tests = {}; window.plt.tests.initTests = initTests; window.plt.tests.resetTests = function() { - $("#failure-index").clear(); + $("#failure-index").empty(); failureCount = 0; $("#failure-index").css("display", "none"); diff --git a/whalesong/repl-prototype/htdocs/torture-tests.html b/whalesong/repl-prototype/htdocs/torture-tests.html new file mode 100644 index 0000000..29a4ee0 --- /dev/null +++ b/whalesong/repl-prototype/htdocs/torture-tests.html @@ -0,0 +1,24 @@ + + + + + + + + + + + + +

Repl tests

+

This page tests the behavior of REPL compilation under repeated +usage. This should just run forever.

+ +
+
+
Failures:
+
+
+ + + diff --git a/whalesong/repl-prototype/htdocs/torture-tests.js b/whalesong/repl-prototype/htdocs/torture-tests.js new file mode 100644 index 0000000..c421299 --- /dev/null +++ b/whalesong/repl-prototype/htdocs/torture-tests.js @@ -0,0 +1,22 @@ +jQuery(document).ready(function() { + "use strict"; + var i = 0; + // Torture test: keep rerunning the tests over and over. + plt.tests.initTests(function(runTests) { + var k = function() { + i = i + 1; + $("#is-running").text( + "Pass " + i + ": " + + plt.tests.getTestsRunCount() + " tests executed."); + setTimeout( + function() { + plt.tests.resetTests(); + runTests(k); + }, + 0); + }; + + runTests(k); + }); +}); +