rebuilt performance test framework. It now runs tests across multiple Kinetic versions to track performance improvements

This commit is contained in:
Eric Rowell
2013-05-13 21:59:33 -07:00
parent cbf3c01327
commit 6b68da49d9
2 changed files with 104 additions and 662 deletions

View File

@@ -2,17 +2,58 @@
<html>
<head>
<link rel="stylesheet" type="text/css"href="../base.css">
<script src="../../dist/kinetic-vcurrent.js"></script>
<!-- assets -->
<script src="../js/Test.js"></script>
<script src="../js/performanceTests.js"></script>
<script src="../assets/worldMap.js"></script>
<script>
window.onload = function() {
var test = new Test();
test.run();
};
</script>
</head>
<body onmousedown="return false;"></body>
<body>
</body>
<script src="../js/performanceTests.js"></script>
<!-- versions -->
<script src="http://d3lp1msu2r81bx.cloudfront.net/kjs/js/lib/kinetic-v4.4.0.js"></script>
<script>
(function(K) {
run(K);
})(Kinetic);
</script>
<script src="http://d3lp1msu2r81bx.cloudfront.net/kjs/js/lib/kinetic-v4.4.1.js"></script>
<script>
(function(K) {
run(K);
})(Kinetic);
</script>
<script src="http://d3lp1msu2r81bx.cloudfront.net/kjs/js/lib/kinetic-v4.4.2.js"></script>
<script>
(function(K) {
run(K);
})(Kinetic);
</script>
<script src="http://d3lp1msu2r81bx.cloudfront.net/kjs/js/lib/kinetic-v4.4.3.js"></script>
<script>
(function(K) {
run(K);
})(Kinetic);
</script>
<script src="http://d3lp1msu2r81bx.cloudfront.net/kjs/js/lib/kinetic-v4.5.0.min.js"></script>
<script>
(function(K) {
run(K);
})(Kinetic);
</script>
<script src="http://d3lp1msu2r81bx.cloudfront.net/kjs/js/lib/kinetic-v4.5.1.min.js"></script>
<script>
(function(K) {
run(K);
})(Kinetic);
</script>
<script src="../../dist/kinetic-vcurrent.js"></script>
<script>
(function(K) {
run(K);
})(Kinetic);
</script>
</html>