From 69ed64dd78938213da5b2fd78fb8cdead29e1bb5 Mon Sep 17 00:00:00 2001 From: Lucas Meneghel Rodrigues Date: Tue, 10 Jun 2014 22:05:53 -0300 Subject: [PATCH] selftests/functional: Add journal plugin to the compatible output test As I realized we did not have the journal plugin out here. Signed-off-by: Lucas Meneghel Rodrigues --- selftests/all/functional/avocado/output_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selftests/all/functional/avocado/output_tests.py b/selftests/all/functional/avocado/output_tests.py index 7d85ccc0..4bbcab04 100644 --- a/selftests/all/functional/avocado/output_tests.py +++ b/selftests/all/functional/avocado/output_tests.py @@ -88,7 +88,7 @@ class OutputPluginTest(unittest.TestCase): def test_output_compatible_setup(self): tmpfile = tempfile.mktemp() os.chdir(basedir) - cmd_line = './scripts/avocado --xunit --xunit-output %s --json run sleeptest' % tmpfile + cmd_line = './scripts/avocado --journal --xunit --xunit-output %s --json run sleeptest' % tmpfile result = process.run(cmd_line, ignore_status=True) output = result.stdout + result.stderr expected_rc = 0 -- GitLab