|
7 | 7 | This module calls down into individual test cases via subprocess. It will |
8 | 8 | forward all unrecognized arguments onto the individual test scripts. |
9 | 9 |
|
10 | | -Functional tests are disabled on Windows by default. Use --force to run them anyway. |
11 | | -
|
12 | 10 | For a description of arguments recognized by test scripts, see |
13 | 11 | `test/functional/test_framework/test_framework.py:BitcoinTestFramework.main`. |
14 | 12 |
|
@@ -224,7 +222,6 @@ def main(): |
224 | 222 | parser.add_argument('--ci', action='store_true', help='Run checks and code that are usually only enabled in a continuous integration environment') |
225 | 223 | parser.add_argument('--exclude', '-x', help='specify a comma-separated-list of scripts to exclude.') |
226 | 224 | parser.add_argument('--extended', action='store_true', help='run the extended test suite in addition to the basic tests') |
227 | | - parser.add_argument('--force', '-f', action='store_true', help='run tests even on platforms where they are disabled by default (e.g. windows).') |
228 | 225 | parser.add_argument('--help', '-h', '-?', action='store_true', help='print help text and exit') |
229 | 226 | parser.add_argument('--jobs', '-j', type=int, default=4, help='how many test scripts to run in parallel. Default=4.') |
230 | 227 | parser.add_argument('--keepcache', '-k', action='store_true', help='the default behavior is to flush the cache directory on startup. --keepcache retains the cache from the previous testrun.') |
@@ -261,12 +258,6 @@ def main(): |
261 | 258 |
|
262 | 259 | enable_bitcoind = config["components"].getboolean("ENABLE_BITCOIND") |
263 | 260 |
|
264 | | - if config["environment"]["EXEEXT"] == ".exe" and not args.force: |
265 | | - # https://github.com/bitcoin/bitcoin/commit/d52802551752140cf41f0d9a225a43e84404d3e9 |
266 | | - # https://github.com/bitcoin/bitcoin/pull/5677#issuecomment-136646964 |
267 | | - print("Tests currently disabled on Windows by default. Use --force option to enable") |
268 | | - sys.exit(0) |
269 | | - |
270 | 261 | if not enable_bitcoind: |
271 | 262 | print("No functional tests to run.") |
272 | 263 | print("Rerun ./configure with --with-daemon and then make") |
|
0 commit comments