diff options
author | Louise Crow <louise.crow@gmail.com> | 2014-03-04 09:53:26 +0000 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2014-03-04 09:53:26 +0000 |
commit | 3912c73583464e3ff203e3e101325ccabcba0506 (patch) | |
tree | 3b57620358c4c4cfe1c52702f2979876f6452aa0 /spec/lib/alaveteli_external_command_scripts | |
parent | 2a49615ee3ea08f7952283efc0306a1ac0c23334 (diff) | |
parent | af83354da1030c2d2fad3c63f3ccb516c4923d38 (diff) |
Merge branch 'release/0.17' into wdtk
Conflicts:
config/general.yml-example
Diffstat (limited to 'spec/lib/alaveteli_external_command_scripts')
-rwxr-xr-x | spec/lib/alaveteli_external_command_scripts/error.sh | 4 | ||||
-rwxr-xr-x | spec/lib/alaveteli_external_command_scripts/segfault.sh | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/spec/lib/alaveteli_external_command_scripts/error.sh b/spec/lib/alaveteli_external_command_scripts/error.sh new file mode 100755 index 000000000..65e74b3c6 --- /dev/null +++ b/spec/lib/alaveteli_external_command_scripts/error.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +echo "this is my error message" >&1 +exit 1 diff --git a/spec/lib/alaveteli_external_command_scripts/segfault.sh b/spec/lib/alaveteli_external_command_scripts/segfault.sh new file mode 100755 index 000000000..f96ba5be8 --- /dev/null +++ b/spec/lib/alaveteli_external_command_scripts/segfault.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +kill -11 $$ |