diff options
| author | Eduard-Mihai Burtescu <eddyb@lyken.rs> | 2021-08-26 20:20:08 +0300 |
|---|---|---|
| committer | Eduard-Mihai Burtescu <eddyb@lyken.rs> | 2021-08-26 20:20:08 +0300 |
| commit | 24526bbe779b552c3323f3ee1046b534f0888be7 (patch) | |
| tree | 9bb03660c1ed6c124ad2a11d7f10a0ae2b148114 | |
| parent | b4fcf1b1dc3d0533a7fa554482e99366f532056b (diff) | |
| download | rust-24526bbe779b552c3323f3ee1046b534f0888be7.tar.gz rust-24526bbe779b552c3323f3ee1046b534f0888be7.zip | |
compiletest: allow `.` in remote test paths (can arise from revisions).
| -rw-r--r-- | src/tools/compiletest/src/runtest.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/compiletest/src/runtest.rs b/src/tools/compiletest/src/runtest.rs index f291918225f..51a4d74109a 100644 --- a/src/tools/compiletest/src/runtest.rs +++ b/src/tools/compiletest/src/runtest.rs @@ -3227,7 +3227,7 @@ impl<'test> TestCx<'test> { // so it needs to be removed when comparing the run-pass test execution output lazy_static! { static ref REMOTE_TEST_RE: Regex = Regex::new( - "^uploaded \"\\$TEST_BUILD_DIR(/[[:alnum:]_\\-]+)+\", waiting for result\n" + "^uploaded \"\\$TEST_BUILD_DIR(/[[:alnum:]_\\-.]+)+\", waiting for result\n" ) .unwrap(); } |
