summaryrefslogtreecommitdiff
path: root/testsuite/tests/concurrent/prog003
diff options
context:
space:
mode:
authorThomas Miedema <thomasmiedema@gmail.com>2017-01-22 13:24:13 -0500
committerBen Gamari <ben@smart-cactus.org>2017-01-22 14:43:51 -0500
commit5d38fb69fd1e7a434ccc3147ae6a17fe0b5b0be3 (patch)
tree6513044b8f87723c7db716824b33bbf804c02434 /testsuite/tests/concurrent/prog003
parent3f1a21d9725da96dc3cc5d51d97ee4fcc465db47 (diff)
downloadhaskell-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/concurrent/prog003')
-rw-r--r--testsuite/tests/concurrent/prog003/all.T25
1 files changed, 3 insertions, 22 deletions
diff --git a/testsuite/tests/concurrent/prog003/all.T b/testsuite/tests/concurrent/prog003/all.T
index 7522b10010..2f7fe3bec8 100644
--- a/testsuite/tests/concurrent/prog003/all.T
+++ b/testsuite/tests/concurrent/prog003/all.T
@@ -10,25 +10,6 @@
# occasionally, but at least the test is here for posterity.
test('concprog003',
- [when(fast(), skip),
- extra_clean([
- 'BackList2.hi', 'BackList2.o',
- 'ImmList.hi', 'ImmList.o',
- 'MainMVarList.hi', 'MainMVarList.o',
- 'TestDataParser.hi', 'TestDataParser.o',
- 'CASList.hi', 'CASList.o',
- 'IOList.hi', 'IOList.o',
- 'MVarListLockCoupling.hi', 'MVarListLockCoupling.o',
- 'TestRun.hi', 'TestRun.o',
- 'Collate.hi', 'Collate.o',
- 'LazyList2.hi', 'LazyList2.o',
- 'RefInterface.hi', 'RefInterface.o',
- 'Collection.hi', 'Collection.o',
- 'Main.hi', 'Main.o',
- 'TestData.hi', 'TestData.o'
- ]),
- reqlib('random'),
- extra_run_opts('IMM -t test-8-3000-3000-2-1-4'),
- ],
- multimod_compile_and_run,
- ['Main',''])
+ [when(fast(), skip), reqlib('random'),
+ extra_run_opts('IMM -t test-8-3000-3000-2-1-4')],
+ multimod_compile_and_run, ['Main', ''])