Module: check_mk
Branch: master
Commit: 3a21e047129aeac20bd22d9cc66d60088699a9ea
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=3a21e047129aea…
Author: Jukka Aro <ja(a)mathias-kettner.de>
Date: Wed Jan 31 14:03:16 2018 +0100
Windows: use crash_debug = yes in agent param tests
Enable logging also for all agent start parameter tests. This option was
already in use for the rest of the integration tests.
---
agents/windows/it/test_agent_start_parameters.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/agents/windows/it/test_agent_start_parameters.py
b/agents/windows/it/test_agent_start_parameters.py
index 95625f0..c125a6a 100644
--- a/agents/windows/it/test_agent_start_parameters.py
+++ b/agents/windows/it/test_agent_start_parameters.py
@@ -34,9 +34,9 @@ def testfile():
@pytest.fixture
def testconfig(config):
+ config.set("global", "crash_debug", "yes")
if Globals.param[0] == 'showconfig':
config.set("global", "sections", '
'.join(Globals.sections))
- config.set("global", "crash_debug", "yes")
for section in filter(lambda s: s != 'check_mk', Globals.sections):
config.add_section(section)
config.set('fileinfo', 'path', os.path.join(remotedir,
'*.log'))