Skip to content

Commit

Permalink
compiletest: allow . in remote test paths (can arise from revisions).
Browse files Browse the repository at this point in the history
  • Loading branch information
eddyb committed Aug 26, 2021
1 parent b4fcf1b commit 24526bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/compiletest/src/runtest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down

0 comments on commit 24526bb

Please sign in to comment.