summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2021-05-14 08:35:07 +0100
committerMatthew Pickering <matthewtpickering@gmail.com>2021-05-14 08:35:07 +0100
commited55aee4811fe2fe0dc74b92b3eae587da453df1 (patch)
tree14aab09f97c4a172b970384904ee7b6fed394626
parentfc9546caf3e16db070bfc7bb5523c38595233e26 (diff)
downloadhaskell-ed55aee4811fe2fe0dc74b92b3eae587da453df1.tar.gz
testsuite: Don't copy .hi-boot and .o-boot files into temp dirwip/test-extra-exts
-rw-r--r--testsuite/driver/testlib.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/testsuite/driver/testlib.py b/testsuite/driver/testlib.py
index 2bcbc543ce..13c32da1f6 100644
--- a/testsuite/driver/testlib.py
+++ b/testsuite/driver/testlib.py
@@ -969,7 +969,9 @@ def get_package_cache_timestamp() -> float:
except:
return 0.0
-do_not_copy = ('.hi', '.o', '.dyn_hi', '.dyn_o', '.out') # 12112
+do_not_copy = ('.hi', '.o', '.dyn_hi'
+ , '.dyn_o', '.out'
+ ,'.hi-boot', '.o-boot') # 12112
def test_common_work(watcher: testutil.Watcher,
name: TestName, opts,