Skip to content

Commit 2af17a6

Browse files
trflynn89awesomekling
authored andcommitted
Remove JIT from test262 website
1 parent 1dc2cd5 commit 2af17a6

File tree

3 files changed

+14
-48
lines changed

3 files changed

+14
-48
lines changed

test262/index.html

-19
Original file line numberDiff line numberDiff line change
@@ -147,13 +147,6 @@ <h2>test262</h2>
147147
<canvas id="chart-test262"></canvas>
148148
</div>
149149
</section>
150-
<section>
151-
<h2>test262 - JIT</h2>
152-
<p id="summary-test262-jit">Loading...</p>
153-
<div class="chart-wrapper">
154-
<canvas id="chart-test262-jit"></canvas>
155-
</div>
156-
</section>
157150
<section>
158151
<h2>test262 parser tests</h2>
159152
<p id="summary-test262-parser-tests">Loading...</p>
@@ -167,24 +160,12 @@ <h2>test262 performance</h2>
167160
<canvas id="chart-test262-performance"></canvas>
168161
</div>
169162
</section>
170-
<section>
171-
<h2>test262 performance - JIT</h2>
172-
<div class="chart-wrapper">
173-
<canvas id="chart-test262-jit-performance"></canvas>
174-
</div>
175-
</section>
176163
<section>
177164
<h2>test262 performance per test</h2>
178165
<div class="chart-wrapper">
179166
<canvas id="chart-test262-performance-per-test"></canvas>
180167
</div>
181168
</section>
182-
<section>
183-
<h2>test262 performance per test - JIT</h2>
184-
<div class="chart-wrapper">
185-
<canvas id="chart-test262-jit-performance-per-test"></canvas>
186-
</div>
187-
</section>
188169
</main>
189170
<footer>
190171
Made by

test262/main.js

+13-25
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
const charts = {
6666
...Object.fromEntries(
6767
[].concat(
68-
...["test262", "test262-jit"].map((name) => [
68+
...["test262"].map((name) => [
6969
[
7070
name,
7171
{
@@ -147,10 +147,10 @@
147147
continue;
148148
}
149149

150-
for (const jitSuffix of ["", "-jit"]) {
150+
for (const suffix of [""]) {
151151
// chart-test262-performance
152-
const performanceTests = entry.tests[`test262${jitSuffix}`];
153-
const performanceChart = charts[`test262${jitSuffix}-performance`];
152+
const performanceTests = entry.tests[`test262${suffix}`];
153+
const performanceChart = charts[`test262${suffix}-performance`];
154154
const performanceResults = performanceTests?.results;
155155
if (performanceResults) {
156156
performanceChart.metadata.push({
@@ -167,9 +167,9 @@
167167
}
168168

169169
// chart-test262-performance-per-test
170-
const performancePerTestTests = entry.tests[`test262${jitSuffix}`];
170+
const performancePerTestTests = entry.tests[`test262${suffix}`];
171171
const performancePerTestChart =
172-
charts[`test262${jitSuffix}-performance-per-test`];
172+
charts[`test262${suffix}-performance-per-test`];
173173
const performancePerTestResults = performancePerTestTests?.results;
174174
if (performancePerTestResults) {
175175
performancePerTestChart.metadata.push({
@@ -394,21 +394,19 @@ test262@${test262Version}, test262-parser-tests@${test262ParserTestsVersion}`;
394394
document.getElementById("chart-test262-parser-tests"),
395395
charts["test262-parser-tests"]
396396
);
397-
for (const jitSuffix of ["", "-jit"]) {
397+
for (const suffix of [""]) {
398398
initializeChart(
399-
document.getElementById(`chart-test262${jitSuffix}`),
400-
charts[`test262${jitSuffix}`]
399+
document.getElementById(`chart-test262${suffix}`),
400+
charts[`test262${suffix}`]
401401
);
402402
initializeChart(
403-
document.getElementById(`chart-test262${jitSuffix}-performance`),
404-
charts[`test262${jitSuffix}-performance`],
403+
document.getElementById(`chart-test262${suffix}-performance`),
404+
charts[`test262${suffix}-performance`],
405405
{ yAxisTitle: TestResultLabels[TestResult.DURATION] }
406406
);
407407
initializeChart(
408-
document.getElementById(
409-
`chart-test262${jitSuffix}-performance-per-test`
410-
),
411-
charts[`test262${jitSuffix}-performance-per-test`],
408+
document.getElementById(`chart-test262${suffix}-performance-per-test`),
409+
charts[`test262${suffix}-performance-per-test`],
412410
{ yAxisTitle: TestResultLabels[TestResult.DURATION] }
413411
);
414412
}
@@ -424,16 +422,6 @@ test262@${test262Version}, test262-parser-tests@${test262ParserTestsVersion}`;
424422
);
425423
}
426424

427-
if ("test262-jit" in last.tests) {
428-
initializeSummary(
429-
document.getElementById("summary-test262-jit"),
430-
last.run_timestamp,
431-
last.versions.serenity,
432-
last.tests["test262-jit"].duration,
433-
last.tests["test262-jit"].results
434-
);
435-
}
436-
437425
if ("test262-parser-tests" in last.tests) {
438426
initializeSummary(
439427
document.getElementById("summary-test262-parser-tests"),

test262/per-file/index.html

+1-4
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,7 @@ <h2>Per-file results</h2>
5959
<script>
6060
window.config = {
6161
initialPathInTree: "test",
62-
loadPathsAndModes: [
63-
["test262/per-file-master.json", "Interpreter"],
64-
["test262/per-file-master-jit.json", "JIT"],
65-
],
62+
loadPathsAndModes: [["test262/per-file-master.json", "Interpreter"]],
6663
generateGitHubURLFromTestPath(filepath) {
6764
return `https://github.com/tc39/test262/tree/main/${filepath}`;
6865
},

0 commit comments

Comments
 (0)