From 4ce77ae70b458c2f2afc576136cd5855333a48dc Mon Sep 17 00:00:00 2001 From: Jan Kaluza Date: Mon, 21 Dec 2015 19:13:21 +0100 Subject: [PATCH] Disable prosody debug and enable IRC tests again --- spectrum/src/tests/start.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/spectrum/src/tests/start.py b/spectrum/src/tests/start.py index df585ad8..7265f6e0 100644 --- a/spectrum/src/tests/start.py +++ b/spectrum/src/tests/start.py @@ -125,19 +125,18 @@ class JabberServerModeConf(BaseTest): return False def pre_test(self): - os.system("prosody --config prosody.cfg.lua &") + os.system("prosody --config prosody.cfg.lua >prosody.log &") time.sleep(3) os.system("../../../spectrum_manager/src/spectrum2_manager -c manager.conf localhostxmpp register client%localhost@localhostxmpp client@localhost password 2>/dev/null >/dev/null") os.system("../../../spectrum_manager/src/spectrum2_manager -c manager.conf localhostxmpp register responder%localhost@localhostxmpp responder@localhost password 2>/dev/null >/dev/null") def post_test(self): - os.system("ps aux") os.system("killall lua-5.1 2>/dev/null") os.system("killall spectrum2_libpurple_backend 2>/dev/null") configurations = [] -#configurations.append(LibcommuniServerModeSingleServerConf()) -#configurations.append(LibcommuniServerModeConf()) +configurations.append(LibcommuniServerModeSingleServerConf()) +configurations.append(LibcommuniServerModeConf()) configurations.append(JabberServerModeConf()) exitcode = 0