From 4bece8a8bef98a8f20e4ab2ad79545e1a3802e7e Mon Sep 17 00:00:00 2001 From: Fuzzbawls Date: Thu, 30 Mar 2023 11:37:15 -0700 Subject: [PATCH] [Tests] Run tiertwo and sapling functional tests by default Running the functional test suite script without any options was previously only running the BASE_SCRIPTS, leading to an under-representation of test coverage. --- test/functional/test_runner.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/functional/test_runner.py b/test/functional/test_runner.py index a932705518294..99d97e1a2a753 100755 --- a/test/functional/test_runner.py +++ b/test/functional/test_runner.py @@ -231,7 +231,9 @@ 'rpc_users.py', 'wallet_hd.py', # no HD tests for pre-HD wallets 'wallet_upgrade.py', # can't upgrade to pre-HD wallet + 'sapling_supply.py', 'sapling_wallet_persistence.py', + 'sapling_wallet_send.py', 'sapling_wallet.py', 'sapling_changeaddresses.py', 'sapling_key_import_export.py', @@ -345,7 +347,7 @@ def main(): if len(test_list) == 0: # No individual tests (or sub-list) have been specified. # Run all base tests, and optionally run extended tests. - test_list = BASE_SCRIPTS + test_list = TIERTWO_SCRIPTS + SAPLING_SCRIPTS + BASE_SCRIPTS if args.extended: # place the EXTENDED_SCRIPTS first since the three longest ones # are there and the list is shorter