Skip to content
Merged
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
test: fix WPT runner result
This doesn't include the other tests for the result when
running a specific test in WPT.

Signed-off-by: Daeyeon Jeong [email protected]
  • Loading branch information
daeyeon committed Aug 14, 2022
commit d87b8b6fc48675ee263b2bf0b27673b4229a4f98
8 changes: 5 additions & 3 deletions test/common/wpt.js
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,6 @@ class WPTRunner {
}

process.on('exit', () => {
const total = this.specMap.size;
if (this.inProgress.size > 0) {
for (const filename of this.inProgress) {
this.fail(filename, { name: 'Unknown' }, kIncomplete);
Expand Down Expand Up @@ -506,7 +505,9 @@ class WPTRunner {
}

const unexpectedPasses = [];
for (const [key, specMap] of this.specMap) {
for (const specMap of queue) {
const key = specMap.filename;

// File has no expected failures
if (!specMap.failedTests.length) {
continue;
Expand All @@ -529,7 +530,8 @@ class WPTRunner {
}
}

const ran = total - skipped;
const ran = queue.length;
const total = ran + skipped;
const passed = ran - expectedFailures - failures.length;
console.log(`Ran ${ran}/${total} tests, ${skipped} skipped,`,
`${passed} passed, ${expectedFailures} expected failures,`,
Expand Down