diff options
| author | Brian Anderson <banderson@mozilla.com> | 2011-07-25 15:21:36 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2011-07-25 16:36:38 -0700 |
| commit | ac2424dd22eb5faf5da86cef6d723d07e548a7b4 (patch) | |
| tree | 1415c61e183ceefd19765db419c16aab04e5df74 /src/test/stdtest | |
| parent | 2de43c220c4ec39f1081b429ba060d765da0cef5 (diff) | |
| download | rust-ac2424dd22eb5faf5da86cef6d723d07e548a7b4.tar.gz rust-ac2424dd22eb5faf5da86cef6d723d07e548a7b4.zip | |
Run test tasks in parallel according to RUST_THREADS. Issue #734
Diffstat (limited to 'src/test/stdtest')
| -rw-r--r-- | src/test/stdtest/test.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/stdtest/test.rs b/src/test/stdtest/test.rs index 7bf5b3cc931..e4317b10727 100644 --- a/src/test/stdtest/test.rs +++ b/src/test/stdtest/test.rs @@ -26,7 +26,7 @@ fn ignored_tests_result_in_ignored() { auto desc = rec(name = "whatever", fn = f, ignore = true); - auto res = test::run_test(desc); + auto res = test::run_test(desc).wait(); assert res == test::tr_ignored; } |
