diff options
Diffstat (limited to 'python/pymake/tests/unterminated-dollar.mk')
-rw-r--r-- | python/pymake/tests/unterminated-dollar.mk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/python/pymake/tests/unterminated-dollar.mk b/python/pymake/tests/unterminated-dollar.mk new file mode 100644 index 000000000..dee9a207b --- /dev/null +++ b/python/pymake/tests/unterminated-dollar.mk @@ -0,0 +1,6 @@ +VAR = value$ +VAR2 = other + +all: + test "$(VAR)" = "value" + @echo TEST-PASS |