We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a808a8 commit 716c22eCopy full SHA for 716c22e
scripts/ci/fd-conformance.mjs
@@ -77,8 +77,8 @@ await $`source test_suite_env/bin/activate && \
77
-i ${fixturesPath} -s ${testTargetPathBuiltin} -t ${testTargetPathCoreBpf}`;
78
79
// Assert conformance.
80
-// There should be no `failed_protobufs` directory.
81
-if (fs.existsSync('test_results/failed_protobufs')) {
+// There should be no fixtures in the `failed_protobufs` directory.
+if (fs.readdirSync('test_results/failed_protobufs').length > 0) {
82
throw new Error(`Error: mismatches detected.`);
83
} else {
84
console.log('All tests passed.');
0 commit comments