Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Alex D
GHC
Commits
6e199bd0
Commit
6e199bd0
authored
Jul 20, 2012
by
Ian Lynagh
Browse files
Remove T7041; it doesn't make sense now that we handle gcd differently
parent
ed3c066f
Changes
3
Hide whitespace changes
Inline
Side-by-side
testsuite/tests/lib/integer/Makefile
View file @
6e199bd0
...
...
@@ -56,9 +56,3 @@ IntegerConversionRules:
-
grep
-q
integerToWord
$@
.simpl
&&
echo
"integerToWord present"
-
grep
-q
int2Word
$@
.simpl
||
echo
"int2Word absent"
.PHONY
:
T7041
T7041
:
'
$(TEST_HC)
'
-Wall
-v0
-O
-c
$@
.hs
-fforce-recomp
-ddump-simpl
>
$@
.simpl
-
grep
-q
gcdInteger
$@
.simpl
&&
echo
"gcdInteger present"
-
grep
-q
"gcdInt
\>
"
$@
.simpl
||
echo
"gcdInt absent"
testsuite/tests/lib/integer/T7041.hs
deleted
100644 → 0
View file @
ed3c066f
module
T7041
where
gcdInt
::
Int
->
Int
->
Int
gcdInt
a
b
=
fromInteger
(
gcd
(
toInteger
a
)
(
toInteger
b
))
testsuite/tests/lib/integer/all.T
View file @
6e199bd0
...
...
@@ -13,8 +13,4 @@ test('IntegerConversionRules',
run_command
,
['
$MAKE -s --no-print-directory IntegerConversionRules
'])
test
('
gcdInteger
',
normal
,
compile_and_run
,
[''])
test
('
T7041
',
extra_clean
(['
T7041.simpl
']),
run_command
,
['
$MAKE -s --no-print-directory T7041
'])
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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