summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test-plans/strawberry.jam')
-rw-r--r--test-plans/strawberry.jam19
1 files changed, 19 insertions, 0 deletions
diff --git a/test-plans/strawberry.jam b/test-plans/strawberry.jam
new file mode 100644
index 0000000..8d9001a
--- /dev/null
+++ b/test-plans/strawberry.jam
@@ -0,0 +1,19 @@
+X = Bob Sue Pat ;
+Y = "" "" ;
+Echo Hello $(X)$(Y) ;
+Y Z = test ;
+Y = ;
+Z = $(X)$(Y) ;
+
+rule MyRule
+{
+ Echo First arg is $(1) ;
+ Echo Second arg is $(2) ;
+ Echo Third arg is $(3) ;
+}
+
+actions MyAction
+{
+ ytouch $(1)
+cat $(2) >> $(1)
+}