Commit b1bc3918 authored by Łukasz Nowak's avatar Łukasz Nowak

promise/plugin: Check stderr from executed commands

parent cc1d5d16
......@@ -46,11 +46,12 @@ class TestCheckCommandExecute(TestPromisePluginMixin):
self.fail_command = os.path.join(self.tempdir, 'fail')
self._createScript(self.fail_command, """#/bin/sh
echo failure
echo me
echo me 1>&2
exit 1""")
self.success_command = os.path.join(self.tempdir, 'success')
self._createScript(self.success_command, """#/bin/sh
echo success
echo me 1>&2
exit 0""")
self.promise_name = "check-command-execute.py"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment