diff options
| author | Jilles Tjoelker <jilles@FreeBSD.org> | 2019-01-03 20:23:12 +0000 |
|---|---|---|
| committer | Jilles Tjoelker <jilles@FreeBSD.org> | 2019-01-03 20:23:12 +0000 |
| commit | 993b1e419cf5127136f1a1316a8ebf9699fc3784 (patch) | |
| tree | 9f091608699e6abd6455ccdd1574e8d3ad4bfc23 /bin | |
| parent | 56f33d07ce1976b1565f6680b83eaa9e1bcea9e5 (diff) | |
Notes
Diffstat (limited to 'bin')
| -rw-r--r-- | bin/sh/tests/execution/Makefile | 1 | ||||
| -rw-r--r-- | bin/sh/tests/execution/env1.0 | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/bin/sh/tests/execution/Makefile b/bin/sh/tests/execution/Makefile index 1f92c1a835f7e..a5c1cee95ddb4 100644 --- a/bin/sh/tests/execution/Makefile +++ b/bin/sh/tests/execution/Makefile @@ -17,6 +17,7 @@ ${PACKAGE}FILES+= bg7.0 ${PACKAGE}FILES+= bg8.0 ${PACKAGE}FILES+= bg9.0 ${PACKAGE}FILES+= bg10.0 bg10.0.stdout +${PACKAGE}FILES+= env1.0 ${PACKAGE}FILES+= fork1.0 ${PACKAGE}FILES+= fork2.0 ${PACKAGE}FILES+= fork3.0 diff --git a/bin/sh/tests/execution/env1.0 b/bin/sh/tests/execution/env1.0 new file mode 100644 index 0000000000000..7eb8abbd52472 --- /dev/null +++ b/bin/sh/tests/execution/env1.0 @@ -0,0 +1,5 @@ +# $FreeBSD$ + +unset somestrangevar +export somestrangevar +[ "`$SH -c 'echo ${somestrangevar-unset}'`" = unset ] |
