Skip to content

Commit

Permalink
Run rust tests sequentially.
Browse files Browse the repository at this point in the history
Working around a bug that I think has been here a while, but
is somehow made more promentent with #782.
  • Loading branch information
ry committed Sep 25, 2018
1 parent aef10dc commit 7462e4c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tools/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ def main(argv):

test_rs = os.path.join(build_dir, "test_rs" + executable_suffix)
check_exists(test_rs)
run([test_rs])
# TODO Remove --test-threads=1. It as added to work around a spurious
# failure in tests::test_dispatch_sync. See #782.
run([test_rs, "--test-threads=1"])

unit_tests(deno_exe)

Expand Down

0 comments on commit 7462e4c

Please sign in to comment.