diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2017-01-22 13:24:13 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2017-01-22 14:43:51 -0500 |
commit | 5d38fb69fd1e7a434ccc3147ae6a17fe0b5b0be3 (patch) | |
tree | 6513044b8f87723c7db716824b33bbf804c02434 /testsuite/tests/generics/all.T | |
parent | 3f1a21d9725da96dc3cc5d51d97ee4fcc465db47 (diff) | |
download | haskell-5d38fb69fd1e7a434ccc3147ae6a17fe0b5b0be3.tar.gz |
Remove clean_cmd and extra_clean usage from .T files
The `clean_cmd` and `extra_clean` setup functions don't do anything.
Remove them from .T files.
Created using https://github.com/thomie/refactor-ghc-testsuite. This
diff is a test for the .T-file parser/processor/pretty-printer in that
repository.
find . -name '*.T' -exec ~/refactor-ghc-testsuite/Main "{}" \;
Tests containing inline comments or multiline strings are not modified.
Preparation for #12223.
Test Plan: Harbormaster
Reviewers: austin, hvr, simonmar, mpickering, bgamari
Reviewed By: mpickering
Subscribers: mpickering
Differential Revision: https://phabricator.haskell.org/D3000
GHC Trac Issues: #12223
Diffstat (limited to 'testsuite/tests/generics/all.T')
-rw-r--r-- | testsuite/tests/generics/all.T | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/testsuite/tests/generics/all.T b/testsuite/tests/generics/all.T index 6bf949fc3b..2c67654aeb 100644 --- a/testsuite/tests/generics/all.T +++ b/testsuite/tests/generics/all.T @@ -26,17 +26,13 @@ test('T5462Yes2', outputdir('out_T5462Yes2') test('T5462No1', outputdir('out_T5462No1') , multimod_compile_fail, ['T5462No1', '-iGFunctor']) -test('T5884', extra_clean(['T5884Other.o', 'T5884Other.hi']) - , multimod_compile, ['T5884Other', '-v0']) +test('T5884', [], multimod_compile, ['T5884Other', '-v0']) test('GenNewtype', normal, compile_and_run, ['']) test('GenDerivOutput1_0', normal, compile, ['-dsuppress-uniques']) test('GenDerivOutput1_1', normal, compile, ['-dsuppress-uniques']) -test('T7878', extra_clean(['T7878A.o' ,'T7878A.hi' - ,'T7878A.o-boot','T7878A.hi-boot' - ,'T7878B.o' ,'T7878B.hi']), - multimod_compile, ['T7878', '-v0']) +test('T7878', [], multimod_compile, ['T7878', '-v0']) test('T8468', normal, compile_fail, ['']) test('T8479', normal, compile, ['']) |