diff options
| author | Suhas Daftuar <[email protected]> | 2019-10-31 13:54:07 -0400 |
|---|---|---|
| committer | Suhas Daftuar <[email protected]> | 2019-10-31 13:54:07 -0400 |
| commit | c5377ffbbbdbc74f50bbabd1e6efd57b3cf34899 (patch) | |
| tree | 4f35fb3243ec5d224b926b5d7c54e2251f2a7b30 | |
| parent | Merge #17274: tests: Fix fuzzers eval_script and script_flags by re-adding EC... (diff) | |
| download | discoin-c5377ffbbbdbc74f50bbabd1e6efd57b3cf34899.tar.xz discoin-c5377ffbbbdbc74f50bbabd1e6efd57b3cf34899.zip | |
[qa] Add shrinkdebugfile=0 to regtest bitcoin.conf
This helps avoid accidentally truncating the debug.log while manually
debugging.
| -rw-r--r-- | test/functional/test_framework/util.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/test_framework/util.py b/test/functional/test_framework/util.py index cde99a221..4d7967273 100644 --- a/test/functional/test_framework/util.py +++ b/test/functional/test_framework/util.py @@ -316,6 +316,7 @@ def initialize_datadir(dirname, n, chain): f.write("listenonion=0\n") f.write("printtoconsole=0\n") f.write("upnp=0\n") + f.write("shrinkdebugfile=0\n") os.makedirs(os.path.join(datadir, 'stderr'), exist_ok=True) os.makedirs(os.path.join(datadir, 'stdout'), exist_ok=True) return datadir |