aboutsummaryrefslogtreecommitdiff
path: root/shell/ash_test/ash-quoting/mode_x.tests
diff options
context:
space:
mode:
Diffstat (limited to 'shell/ash_test/ash-quoting/mode_x.tests')
-rwxr-xr-xshell/ash_test/ash-quoting/mode_x.tests14
1 files changed, 14 insertions, 0 deletions
diff --git a/shell/ash_test/ash-quoting/mode_x.tests b/shell/ash_test/ash-quoting/mode_x.tests
new file mode 100755
index 000000000..16dae3f4b
--- /dev/null
+++ b/shell/ash_test/ash-quoting/mode_x.tests
@@ -0,0 +1,14 @@
+set -x
+
+var1=val
+var2='one two'
+true %s\\n one "two 'three" four
+
+# assignment:
+this=command
+# NOT assignment, +x code should show it quoted:
+"this=command"
+
+if true; then true; fi
+# +x code should quote 'if' here:
+"if" true