-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Fix compiletest windows path finding with spaces #113706
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
r? @oli-obk (rustbot has picked a reviewer for you, use r? to override) |
@bors r+ rollup |
⌛ Testing commit 1ce6183 with merge 515cc8ea9eee1bc817d053564861dbd4eeed5f62... |
💔 Test failed - checks-actions |
The job Click to see the possible cause of the failure (guessed by this bot)
|
@bors retry 404 |
…, r=oli-obk Fix compiletest windows path finding with spaces With `(?x)` enabled spaces are ignored unless you escape them, so the space wasn't being added to the character class I don't think this makes any difference to the current test suite, but it could save someone a headache in the future
…, r=oli-obk Fix compiletest windows path finding with spaces With `(?x)` enabled spaces are ignored unless you escape them, so the space wasn't being added to the character class I don't think this makes any difference to the current test suite, but it could save someone a headache in the future
☀️ Test successful - checks-actions |
Finished benchmarking commit (f0580df): comparison URL. Overall result: no relevant changes - no action needed@rustbot label: -perf-regression Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)ResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesThis benchmark run did not return any relevant results for this metric. Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 657.045s -> 658.423s (0.21%) |
With
(?x)
enabled spaces are ignored unless you escape them, so the space wasn't being added to the character classI don't think this makes any difference to the current test suite, but it could save someone a headache in the future