summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/script/files
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/script/files')
-rwxr-xr-xtest/integration/targets/script/files/create_afile.sh3
-rw-r--r--test/integration/targets/script/files/no_shebang.py6
-rwxr-xr-xtest/integration/targets/script/files/remove_afile.sh3
-rwxr-xr-xtest/integration/targets/script/files/space path/test.sh3
-rwxr-xr-xtest/integration/targets/script/files/test.sh3
-rwxr-xr-xtest/integration/targets/script/files/test_with_args.sh5
6 files changed, 23 insertions, 0 deletions
diff --git a/test/integration/targets/script/files/create_afile.sh b/test/integration/targets/script/files/create_afile.sh
new file mode 100755
index 0000000..e6fae44
--- /dev/null
+++ b/test/integration/targets/script/files/create_afile.sh
@@ -0,0 +1,3 @@
+#!/usr/bin/env bash
+
+echo "win" > "$1" \ No newline at end of file
diff --git a/test/integration/targets/script/files/no_shebang.py b/test/integration/targets/script/files/no_shebang.py
new file mode 100644
index 0000000..f2d386a
--- /dev/null
+++ b/test/integration/targets/script/files/no_shebang.py
@@ -0,0 +1,6 @@
+from __future__ import (absolute_import, division, print_function)
+__metaclass__ = type
+
+import sys
+
+sys.stdout.write("Script with shebang omitted")
diff --git a/test/integration/targets/script/files/remove_afile.sh b/test/integration/targets/script/files/remove_afile.sh
new file mode 100755
index 0000000..4a7fea6
--- /dev/null
+++ b/test/integration/targets/script/files/remove_afile.sh
@@ -0,0 +1,3 @@
+#!/usr/bin/env bash
+
+rm "$1" \ No newline at end of file
diff --git a/test/integration/targets/script/files/space path/test.sh b/test/integration/targets/script/files/space path/test.sh
new file mode 100755
index 0000000..6f6334d
--- /dev/null
+++ b/test/integration/targets/script/files/space path/test.sh
@@ -0,0 +1,3 @@
+#!/usr/bin/env bash
+
+echo -n "Script with space in path" \ No newline at end of file
diff --git a/test/integration/targets/script/files/test.sh b/test/integration/targets/script/files/test.sh
new file mode 100755
index 0000000..ade17e9
--- /dev/null
+++ b/test/integration/targets/script/files/test.sh
@@ -0,0 +1,3 @@
+#!/usr/bin/env bash
+
+echo -n "win" \ No newline at end of file
diff --git a/test/integration/targets/script/files/test_with_args.sh b/test/integration/targets/script/files/test_with_args.sh
new file mode 100755
index 0000000..13dce4f
--- /dev/null
+++ b/test/integration/targets/script/files/test_with_args.sh
@@ -0,0 +1,5 @@
+#!/usr/bin/env bash
+
+for i in "$@"; do
+ echo "$i"
+done \ No newline at end of file