diff options
| author | bors <bors@rust-lang.org> | 2020-07-11 06:28:04 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2020-07-11 06:28:04 +0000 |
| commit | 346aec9b02f3c74f3fce97fd6bda24709d220e49 (patch) | |
| tree | 8ddad2b3c566486f44ea01f6305e1beeb11140f7 /src/etc/test-float-parse | |
| parent | daecab3a784f28082df90cebb204998051f3557d (diff) | |
| parent | 79fc3861dfd1190b257ef7f4208533c3945254b7 (diff) | |
| download | rust-346aec9b02f3c74f3fce97fd6bda24709d220e49.tar.gz rust-346aec9b02f3c74f3fce97fd6bda24709d220e49.zip | |
Auto merge of #74235 - Manishearth:rollup-bgs3q14, r=Manishearth
Rollup of 19 pull requests
Successful merges:
- #71322 (Accept tuple.0.0 as tuple indexing (take 2))
- #72303 (Add core::future::{poll_fn, PollFn})
- #73862 (Stabilize casts and coercions to `&[T]` in const fn)
- #73887 (stabilize const mem::forget)
- #73989 (adjust ub-enum test to be endianess-independent)
- #74045 (Explain effects of debugging options from config.toml)
- #74076 (Add `read_exact_at` and `write_all_at` to WASI's `FileExt`)
- #74099 (Add VecDeque::range* methods)
- #74100 (Use str::strip* in bootstrap)
- #74103 (Only add CFGuard on `windows-msvc` targets)
- #74109 (Only allow `repr(i128/u128)` on enum)
- #74122 (Start-up clean-up)
- #74125 (Correctly mark the ending span of a match arm)
- #74127 (Avoid "whitelist")
- #74129 (:arrow_up: rust-analyzer)
- #74135 (Update books)
- #74145 (Update rust-installer to latest version)
- #74161 (Fix disabled dockerfiles)
- #74162 (take self by value in ToPredicate)
Failed merges:
r? @ghost
Diffstat (limited to 'src/etc/test-float-parse')
| -rw-r--r-- | src/etc/test-float-parse/runtests.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/etc/test-float-parse/runtests.py b/src/etc/test-float-parse/runtests.py index fe6fd45f9a5..7106078f897 100644 --- a/src/etc/test-float-parse/runtests.py +++ b/src/etc/test-float-parse/runtests.py @@ -195,9 +195,9 @@ def main(): global MAILBOX tests = [os.path.splitext(f)[0] for f in glob('*.rs') if not f.startswith('_')] - whitelist = sys.argv[1:] - if whitelist: - tests = [test for test in tests if test in whitelist] + listed = sys.argv[1:] + if listed: + tests = [test for test in tests if test in listed] if not tests: print("Error: No tests to run") sys.exit(1) @@ -210,8 +210,6 @@ def main(): mailman.daemon = True mailman.start() for test in tests: - if whitelist and test not in whitelist: - continue run(test) MAILBOX.put(None) mailman.join() |
