diff --git a/test/test-release.d/cfg.sh b/test/test-release.d/cfg.sh index 9044673..fdc4800 100755 --- a/test/test-release.d/cfg.sh +++ b/test/test-release.d/cfg.sh @@ -37,7 +37,7 @@ init_groups() { init_tests() { i_unit='Unit' s_unit="The following tests will test various low-level subsystems" - t_unit="- $unit_tests_py --node-tools" + t_unit="- $unit_tests_py" f_unit='Unit tests completed' i_misc='Misc' @@ -46,17 +46,17 @@ init_tests() { f_misc='Misc tests completed' i_btc_rt='Bitcoin regtest' - s_btc_rt="The following tests will test MMGen's regtest (Bob and Alice) mode" + s_btc_rt="The following tests will test various scripts using regtest mode" t_btc_rt="- $test_py regtest" - f_btc_rt='Regtest (Bob and Alice) mode tests for BTC completed' + f_btc_rt='Regtest mode tests for BTC completed' i_bch_rt='BitcoinCashNode (BCH) regtest' - s_bch_rt="The following tests will test MMGen's regtest (Bob and Alice) mode" + s_bch_rt="The following tests will test various scripts using regtest mode" t_bch_rt="- $test_py --coin=bch regtest" - f_bch_rt='Regtest (Bob and Alice) mode tests for BCH completed' + f_bch_rt='Regtest mode tests for BCH completed' i_ltc_rt='Litecoin regtest' - s_ltc_rt="The following tests will test MMGen's regtest (Bob and Alice) mode" + s_ltc_rt="The following tests will test various scripts using regtest mode" t_ltc_rt="- $test_py --coin=ltc regtest" - f_ltc_rt='Regtest (Bob and Alice) mode tests for LTC completed' + f_ltc_rt='Regtest mode tests for LTC completed' } diff --git a/test/test_py_d/cfg.py b/test/test_py_d/cfg.py index dbb792f..c56f74c 100755 --- a/test/test_py_d/cfg.py +++ b/test/test_py_d/cfg.py @@ -15,8 +15,8 @@ test.test_py_d.cfg: configuration data for test.py import os cmd_groups_dfl = { - 'helpscreens': ('TestSuiteHelp',{'modname':'misc','full_data':True}), - 'regtest': ('TestSuiteRegtest',{}), + 'helpscreens': ('TestSuiteHelp',{'modname':'misc','full_data':True}), + 'regtest': ('TestSuiteRegtest',{}), } cmd_groups_extra = {} diff --git a/test/test_py_d/ts_misc.py b/test/test_py_d/ts_misc.py index 07d52cf..707f32f 100755 --- a/test/test_py_d/ts_misc.py +++ b/test/test_py_d/ts_misc.py @@ -12,7 +12,6 @@ ts_misc.py: Miscellaneous test groups for the test.py test suite """ -from mmgen.globalvars import g from ..include.common import * from .common import * from .ts_base import * @@ -27,6 +26,7 @@ class TestSuiteHelp(TestSuiteBase): ('helpscreens', (1,'help screens', [])), ('longhelpscreens', (1,'help screens (--longhelp)',[])), ) + color = True def version(self): t = self.spawn(f'mmnode-netrate',['--version']) diff --git a/test/unit_tests_d/nt_BlocksInfo.py b/test/unit_tests_d/ut_BlocksInfo.py similarity index 100% rename from test/unit_tests_d/nt_BlocksInfo.py rename to test/unit_tests_d/ut_BlocksInfo.py