Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Glasgow Haskell Compiler
GHC
Commits
89dab97a
Commit
89dab97a
authored
Apr 26, 2009
by
Ian Lynagh
Browse files
Tweak the driver so that 2566 passes in teh new build system
parent
5dc393d7
Changes
1
Hide whitespace changes
Inline
Side-by-side
testsuite/driver/testlib.py
View file @
89dab97a
...
...
@@ -1228,7 +1228,11 @@ def normalise_errmsg( str ):
str
=
re
.
sub
(
'([^
\\
s])
\\
.exe'
,
'
\\
1'
,
str
)
# The inplace ghc's are called ghc-bin-stage[123] to avoid filename
# collisions, so we need to normalise that to just "ghc"
# (this is for the old build system, I think, so should be removable)
str
=
re
.
sub
(
'ghc-bin-stage[123]'
,
'ghc'
,
str
)
# The inplace ghc's are called ghc-stage[123] to avoid filename
# collisions, so we need to normalise that to just "ghc"
str
=
re
.
sub
(
'ghc-stage[123]'
,
'ghc'
,
str
)
return
str
def
normalise_slashes_
(
str
):
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment