adding torture test runner
This commit is contained in:
parent
f55723b332
commit
01cd1f5867
|
@ -4262,7 +4262,7 @@ jQuery(document).ready(function() {
|
||||||
window.plt.tests = {};
|
window.plt.tests = {};
|
||||||
window.plt.tests.initTests = initTests;
|
window.plt.tests.initTests = initTests;
|
||||||
window.plt.tests.resetTests = function() {
|
window.plt.tests.resetTests = function() {
|
||||||
$("#failure-index").clear();
|
$("#failure-index").empty();
|
||||||
failureCount = 0;
|
failureCount = 0;
|
||||||
$("#failure-index").css("display", "none");
|
$("#failure-index").css("display", "none");
|
||||||
|
|
||||||
|
|
24
whalesong/repl-prototype/htdocs/torture-tests.html
Normal file
24
whalesong/repl-prototype/htdocs/torture-tests.html
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<script src="collects/runtime.js"></script>
|
||||||
|
<script src="collects/library.js"></script>
|
||||||
|
<script src="easyXDM-min.js"></script>
|
||||||
|
<script src="repl.js"></script>
|
||||||
|
<script src="tests-base.js"></script>
|
||||||
|
<script src="torture-tests.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<h1>Repl tests</h1>
|
||||||
|
<p>This page tests the behavior of REPL compilation under repeated
|
||||||
|
usage. This should just run forever.</p>
|
||||||
|
|
||||||
|
<div id="is-running"></div>
|
||||||
|
<br/>
|
||||||
|
<div id="failure-index">Failures: </div>
|
||||||
|
<div id="report"></div>
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
22
whalesong/repl-prototype/htdocs/torture-tests.js
Normal file
22
whalesong/repl-prototype/htdocs/torture-tests.js
Normal file
|
@ -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);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
Loading…
Reference in New Issue
Block a user