Skip to content

Commit f19a3b2

Browse files
author
MarcoFalke
committed
Merge bitcoin#15949: test_runner: Move pruning back to extended
fa08c5c test_runner: Move pruning back to extended (MarcoFalke) Pull request description: This reverts fafb55e, since the test is still too slow to run with asan enabled on a network hdd ACKs for commit fa08c5: jnewbery: utACK fa08c5c jonasschnelli: utACK fa08c5c Tree-SHA512: de16786b9d507a72210805c3e9eef360e5fc3d4bc3a81f7175b6cc70d1bc426cde7ac97bc0d1a0d4e0813067e1e251c2dd49256552cc6b52446b475251b7c32b
2 parents 94daebf + fa08c5c commit f19a3b2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

test/functional/test_runner.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,16 @@
6666
TEST_EXIT_PASSED = 0
6767
TEST_EXIT_SKIPPED = 77
6868

69+
EXTENDED_SCRIPTS = [
70+
# These tests are not run by the travis build process.
71+
# Longest test should go first, to favor running tests in parallel
72+
'feature_pruning.py',
73+
'feature_dbcrash.py',
74+
]
75+
6976
BASE_SCRIPTS = [
7077
# Scripts that are run by the travis build process.
7178
# Longest test should go first, to favor running tests in parallel
72-
'feature_pruning.py',
7379
'feature_fee_estimation.py',
7480
'wallet_hd.py',
7581
'wallet_backup.py',
@@ -197,12 +203,6 @@
197203
# Put them in a random line within the section that fits their approximate run-time
198204
]
199205

200-
EXTENDED_SCRIPTS = [
201-
# These tests are not run by the travis build process.
202-
# Longest test should go first, to favor running tests in parallel
203-
'feature_dbcrash.py',
204-
]
205-
206206
# Place EXTENDED_SCRIPTS first since it has the 3 longest running tests
207207
ALL_SCRIPTS = EXTENDED_SCRIPTS + BASE_SCRIPTS
208208

0 commit comments

Comments
 (0)