diff options
author | Gabor Greif <ggreif@gmail.com> | 2016-12-22 14:57:27 +0100 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2016-12-22 14:59:26 +0100 |
commit | b7a6e6220289289796d03cf1738e6c77daf6c181 (patch) | |
tree | 696fcccbde34dee82b9ce4807b67094486776a57 /testsuite/driver/runtests.py | |
parent | 41ade95c068e77b916ff17865515eadb353a2358 (diff) | |
download | haskell-b7a6e6220289289796d03cf1738e6c77daf6c181.tar.gz |
Revert "Suppress duplicate .T files"
This reverts commit 9a29b65bda8aed4c5fdbff25866ddf2dd1583210.
It turns out that while not harmful, that commit is unnecessary,
and a `make clean` resolved it. See:
https://phabricator.haskell.org/rGHC9a29b65bda8aed4c5fdbff25866ddf2dd1583210
Diffstat (limited to 'testsuite/driver/runtests.py')
-rw-r--r-- | testsuite/driver/runtests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/driver/runtests.py b/testsuite/driver/runtests.py index a30763cc04..28b393a0f9 100644 --- a/testsuite/driver/runtests.py +++ b/testsuite/driver/runtests.py @@ -255,7 +255,7 @@ print('Timeout is ' + str(config.timeout)) if config.rootdirs == []: config.rootdirs = ['.'] -t_files = set(findTFiles(config.rootdirs)) +t_files = list(findTFiles(config.rootdirs)) print('Found', len(t_files), '.T files...') |