diff options
| author | Guillaume Gomez <guillaume.gomez@huawei.com> | 2023-05-10 10:56:59 +0200 |
|---|---|---|
| committer | Guillaume Gomez <guillaume.gomez@huawei.com> | 2023-05-11 11:34:22 +0200 |
| commit | 0630283e9dca4ffe442f4541be8651fa3c676fa2 (patch) | |
| tree | bb276ae5f4a23bb96d04398eca63461a478e91c7 /src/tools/rustdoc-gui | |
| parent | 616fb420986aad3151468c1ca5e874561b452401 (diff) | |
| download | rust-0630283e9dca4ffe442f4541be8651fa3c676fa2.tar.gz rust-0630283e9dca4ffe442f4541be8651fa3c676fa2.zip | |
Migrate to 0.16.0 browser-ui-test version
Diffstat (limited to 'src/tools/rustdoc-gui')
| -rw-r--r-- | src/tools/rustdoc-gui/tester.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tools/rustdoc-gui/tester.js b/src/tools/rustdoc-gui/tester.js index 692d5e3fcef..b26480f668b 100644 --- a/src/tools/rustdoc-gui/tester.js +++ b/src/tools/rustdoc-gui/tester.js @@ -143,7 +143,7 @@ async function runTests(opts, framework_options, files, results, status_bar, sho const tests_queue = []; for (const testPath of files) { - const callback = runTest(testPath, framework_options) + const callback = runTest(testPath, {"options": framework_options}) .then(out => { const [output, nb_failures] = out; results[nb_failures === 0 ? "successful" : "failed"].push({ @@ -323,6 +323,7 @@ async function main(argv) { if (results.failed.length > 0 || results.errored.length > 0) { process.exit(1); } + process.exit(0); } main(process.argv); |
