From ccca13f8eadef31f2df873cb505ebca98501c45a Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 8 Sep 2015 16:42:24 +0200 Subject: Initial take on double quote support Currently, $(foo)-style variable expansion is not supported. --- tests/quote/buildfile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tests/quote/buildfile (limited to 'tests/quote/buildfile') diff --git a/tests/quote/buildfile b/tests/quote/buildfile new file mode 100644 index 0000000..931bc36 --- /dev/null +++ b/tests/quote/buildfile @@ -0,0 +1,18 @@ +print "foo bar" +print "foo +bar" + +foo = "fo o" +bar = " bar " + +print "$foo" +print "$bar" +print "$foo $bar" +print "$foo$bar" + +print "[ $foo ]" +print "[ $bar ]" +print "[ $foo $bar ]" +print "[ $foo/$bar ]" + +./: -- cgit v1.1