Skip to content

Commit de40b29

Browse files
committed
Skip fixture comparisons and remaining tests if compilation failed
If the test is supposed to compile, but compilation fails instead, there's no point in diffing fixtures (unless you like a wall of red in your terminal). It also turns out that execution never reaches the diffing section, since writing the non-existent debug Wasm binary fails.
1 parent e5890b1 commit de40b29

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/compiler.js

+4
Original file line numberDiff line numberDiff line change
@@ -321,6 +321,10 @@ async function runTest(basename) {
321321
}
322322
compareStderr.end(SUCCESS);
323323
return prepareResult(SUCCESS);
324+
} else if (error) {
325+
// Don't bother comparing fixtures or doing anything else if the
326+
// compilation failed.
327+
return prepareResult(FAILURE, "compile failed");
324328
}
325329

326330
const afterCompileResult = afterCompile("debug");

0 commit comments

Comments
 (0)