Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
281 changes: 0 additions & 281 deletions verifier/compare_template.html

This file was deleted.

31 changes: 0 additions & 31 deletions verifier/compare_template.py

This file was deleted.

24 changes: 3 additions & 21 deletions verifier/summary_template.html
Original file line number Diff line number Diff line change
Expand Up @@ -239,19 +239,8 @@
let background_color;
for (const test_type of test_types) {
tr = table.insertRow();

test_type_td = tr.insertCell();

// Create a link to the page to compare
const a_ref = document.createElement('a');
const link = document.createTextNode('Compare ' + test_type);
a_ref.title = "Compare " + test_type;
test_type.innerHTML = test_type;
// Assemble the data for the instances
let compare_list = [];
let test_names = [];

<!-- put link to comparison selection for the test type -->
td = tr.insertCell();
td.innerHTML = test_type

const tests = exec_summary_json[test_type];
for (const exec of executed_platforms) {
Expand Down Expand Up @@ -318,7 +307,6 @@
details.push(link);
}
}

td = tr.insertCell();
if (reports.length > 0) {
// Create the data for the reports
Expand Down Expand Up @@ -356,13 +344,7 @@
}
td = tr.insertCell();
td.innerHTML = details.join('');
}
// Set the compare link for this test type.
const compare_link_text = "compare_" + test_type + ".html";
test_type_td.innerHTML = "<a href=\'" + compare_link_text + "'" +
" target='_blank'>" + test_type + "</a>";


}
}
}
</script>
Expand Down
Loading
Loading