|
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 |
|
@@ -226,7 +224,6 @@ def main():
|
226 | 224 | parser.add_argument('--ci', action='store_true', help='Run checks and code that are usually only enabled in a continuous integration environment')
|
227 | 225 | parser.add_argument('--exclude', '-x', help='specify a comma-separated-list of scripts to exclude.')
|
228 | 226 | parser.add_argument('--extended', action='store_true', help='run the extended test suite in addition to the basic tests')
|
229 |
| - parser.add_argument('--force', '-f', action='store_true', help='run tests even on platforms where they are disabled by default (e.g. windows).') |
230 | 227 | parser.add_argument('--help', '-h', '-?', action='store_true', help='print help text and exit')
|
231 | 228 | parser.add_argument('--jobs', '-j', type=int, default=4, help='how many test scripts to run in parallel. Default=4.')
|
232 | 229 | 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.')
|
@@ -263,12 +260,6 @@ def main():
|
263 | 260 |
|
264 | 261 | enable_bitcoind = config["components"].getboolean("ENABLE_BITCOIND")
|
265 | 262 |
|
266 |
| - if config["environment"]["EXEEXT"] == ".exe" and not args.force: |
267 |
| - # https://github.com/bitcoin/bitcoin/commit/d52802551752140cf41f0d9a225a43e84404d3e9 |
268 |
| - # https://github.com/bitcoin/bitcoin/pull/5677#issuecomment-136646964 |
269 |
| - print("Tests currently disabled on Windows by default. Use --force option to enable") |
270 |
| - sys.exit(0) |
271 |
| - |
272 | 263 | if not enable_bitcoind:
|
273 | 264 | print("No functional tests to run.")
|
274 | 265 | print("Rerun ./configure with --with-daemon and then make")
|
|
0 commit comments