-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtest.html
44 lines (37 loc) · 1.71 KB
/
test.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<link rel="stylesheet" href="src/lib/qunit/qunit/qunit.css" type="text/css"/>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"> </script>
<script type="text/javascript" src="src/lib/qunit/qunit/qunit.js"></script>
<script type="text/javascript" src="src/qunit-log.js"></script>
<script type="text/javascript">
QUnit.config.reorder = false;
window.tests = true;
</script>
<script type="text/javascript" src="src/lib/updated/buckets.js"></script>
<script type="text/javascript" src="src/start.js"></script>
<script type="text/javascript" src="src/kernel.js"></script>
<script type="text/javascript" src="src/lib/updated/jdataview.js"></script>
<script type="text/javascript" src="src/emulator-debug.js"></script>
<!-- Data -->
<script type="text/javascript" src="tests/data.js"></script>
<!-- Tests -->
<script type="text/javascript" src="tests/general.js"></script>
<script type="text/javascript" src="tests/castbyte.js"></script>
<script type="text/javascript" src="tests/castshort.js"></script>
<script type="text/javascript" src="tests/castint.js"></script>
<script type="text/javascript" src="tests/memory.js"></script>
<script type="text/javascript" src="tests/microcode.js"></script>
<script type="text/javascript" src="tests/opcode.js"></script>
</head>
<body>
<h1 id="qunit-header">JS Linux emulator</h1>
<h2 id="qunit-banner"></h2>
<h2 id="qunit-userAgent"></h2>
<ol id="qunit-tests">
</ol>
<div id="qunit-fixture"><div id="log"></div><button id="start" /><button id="stop" /><button id="create" /></div>
</body>
</html>