aboutsummaryrefslogtreecommitdiff
path: root/bin/sh/tests/parser/ps1-expand1.0
diff options
context:
space:
mode:
Diffstat (limited to 'bin/sh/tests/parser/ps1-expand1.0')
-rw-r--r--bin/sh/tests/parser/ps1-expand1.07
1 files changed, 7 insertions, 0 deletions
diff --git a/bin/sh/tests/parser/ps1-expand1.0 b/bin/sh/tests/parser/ps1-expand1.0
new file mode 100644
index 000000000000..351e6437a023
--- /dev/null
+++ b/bin/sh/tests/parser/ps1-expand1.0
@@ -0,0 +1,7 @@
+# Test simple variable expansion in PS1
+testvar=abcdef
+output=$(testvar=abcdef PS1='$testvar:' ENV=/dev/null ${SH} +m -i </dev/null 2>&1)
+case $output in
+*abcdef*) exit 0 ;;
+*) echo "Expected 'abcdef' in prompt output"; exit 1 ;;
+esac