Skip to content
Snippets Groups Projects
Commit ac4a4fec authored by Konstantin Osipov's avatar Konstantin Osipov
Browse files

[test-suite] Sorry if I screamed at you. Don't scream back please.

parent 8afa17cb
No related branches found
No related tags found
No related merge requests found
......@@ -174,11 +174,11 @@ class Test:
check_valgrind_log(server.valgrind_log) == False
elif self.skip:
color_stdout("[ SKIP ]\n", fgcolor='grey')
color_stdout("[ skip ]\n", fgcolor='grey')
if os.path.exists(self.tmp_result):
os.remove(self.tmp_result)
elif self.is_executed_ok and self.is_equal_result and self.is_valgrind_clean:
color_stdout("[ PASS ]\n", fgcolor='green')
color_stdout("[ pass ]\n", fgcolor='green')
if os.path.exists(self.tmp_result):
os.remove(self.tmp_result)
elif (self.is_executed_ok and not self.is_equal_result and not
......@@ -330,7 +330,7 @@ class TestSuite:
if (test_name in self.ini["disabled"]
or not self.server.debug and test_name in self.ini["release_disabled"]
or self.args.valgrind and test_name in self.ini["valgrind_disabled"]):
color_stdout("[ DISABLED ]\n", fgcolor='grey')
color_stdout("[ disabled ]\n", fgcolor='grey')
else:
test.run(self.server)
if not test.passed():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment