]> git.ipfire.org Git - thirdparty/suricata-verify.git/commitdiff
runner: output new line after cmdline
authorJason Ish <ish@unx.ca>
Tue, 30 Jan 2018 15:12:40 +0000 (09:12 -0600)
committerJason Ish <ish@unx.ca>
Tue, 30 Jan 2018 15:12:40 +0000 (09:12 -0600)
run.py

diff --git a/run.py b/run.py
index 00943925443776739ce8ddd6a8917b51a633c0ed..018c464b762970269cbe6b004a66e8f894385c57 100755 (executable)
--- a/run.py
+++ b/run.py
@@ -365,7 +365,7 @@ class TestRunner:
             stderr = open(os.path.join(self.output, "stderr"), "w")
 
             open(os.path.join(self.output, "cmdline"), "w").write(
-                " ".join(args))
+                " ".join(args) + "\n")
 
             p = subprocess.Popen(
                 args, shell=shell, cwd=self.directory, env=env,