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
Alex D
GHC
Commits
82fc2612
Commit
82fc2612
authored
Jun 17, 2013
by
Simon Peyton Jones
Browse files
Test Trac
#7963
parent
08da2825
Changes
6
Hide whitespace changes
Inline
Side-by-side
testsuite/tests/rename/should_compile/Makefile
View file @
82fc2612
...
...
@@ -42,3 +42,7 @@ T4240:
'
$(TEST_HC)
'
$(TEST_HC_OPTS)
-c
T4240.hs
-ddump-minimal-imports
cat
T4240.imports
T7963
:
'
$(TEST_HC)
'
$(TEST_HC_OPTS)
-c
T7963a.hs
'
$(TEST_HC)
'
$(TEST_HC_OPTS)
-c
T7963.hs
-ddump-minimal-imports
cat
T7963.imports
testsuite/tests/rename/should_compile/T7963.hs
0 → 100644
View file @
82fc2612
module
T7963
where
import
Prelude
hiding
(
unlines
)
import
T7963a
(
unlines
)
foo
::
IO
()
foo
=
writeFile
"/tmp/foo"
(
unlines
[
"hello"
,
"world"
])
testsuite/tests/rename/should_compile/T7963.imports
0 → 100644
View file @
82fc2612
import Prelude ( IO, writeFile )
import T7963a ( unlines )
testsuite/tests/rename/should_compile/T7963.stdout
0 → 100644
View file @
82fc2612
import Prelude ( IO, writeFile )
import T7963a ( unlines )
testsuite/tests/rename/should_compile/T7963a.hs
0 → 100644
View file @
82fc2612
module
T7963a
where
unlines
=
concat
testsuite/tests/rename/should_compile/all.T
View file @
82fc2612
...
...
@@ -204,3 +204,8 @@ test('T7167', normal, compile, [''])
test
('
T7336
',
normal
,
compile
,
['
-Wall
'])
test
('
T2435
',
normal
,
multimod_compile
,
['
T2435
','
-v0
'])
test
('
T7963
',
[
extra_clean
(['
T7963a.hi
',
'
T7963a.o
',
'
T7963.imports
'])],
run_command
,
['
$MAKE -s --no-print-directory T7963
'])
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