summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2021-05-14 08:35:07 +0100
committerMarge Bot <ben+marge-bot@smart-cactus.org>2021-05-19 23:37:09 -0400
commit6844ead4f45620f0e9573762e9a892d1ae1609f4 (patch)
tree7fab5461963ca3679c0782cac802db986af7ba3d
parent8e7f02eac64240f1dc9d3dba01e0a7b34982e01f (diff)
downloadhaskell-6844ead4f45620f0e9573762e9a892d1ae1609f4.tar.gz
testsuite: Don't copy .hi-boot and .o-boot files into temp dir
-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,