diff options
author | Lukas Fleischer <cgit@cryptocrack.de> | 2014-01-14 11:13:08 +0100 |
---|---|---|
committer | Lukas Fleischer <cgit@cryptocrack.de> | 2014-01-14 12:01:11 +0100 |
commit | 77ac382607ab9a8bbd410a560d853d58aca6daf1 (patch) | |
tree | 7b639e6217a85d12858ecec31b2416038e3149e9 /tests/filters | |
parent | 80f87c1003a4c58dc7e516d77598cd0213127c02 (diff) |
tests/: Add t0111-filter.shlf/filter
This adds basic tests for all types of exec filters.
Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
Diffstat (limited to 'tests/filters')
-rwxr-xr-x | tests/filters/capitalize-argv1.sh | 3 | ||||
-rwxr-xr-x | tests/filters/capitalize-stdin.sh | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/tests/filters/capitalize-argv1.sh b/tests/filters/capitalize-argv1.sh new file mode 100755 index 0000000..2ea0098 --- /dev/null +++ b/tests/filters/capitalize-argv1.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +echo "$1" | tr '[:lower:]' '[:upper:]' diff --git a/tests/filters/capitalize-stdin.sh b/tests/filters/capitalize-stdin.sh new file mode 100755 index 0000000..c9f4719 --- /dev/null +++ b/tests/filters/capitalize-stdin.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +tr '[:lower:]' '[:upper:]' |