]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
tests: Add test for m4() with multiple arguments.
authorSimon Ruderich <simon@ruderich.org>
Sun, 15 Mar 2009 13:51:59 +0000 (14:51 +0100)
committerSimon Ruderich <simon@ruderich.org>
Mon, 16 Mar 2009 16:40:53 +0000 (17:40 +0100)
tests/lib.sh.test
tests/lib.sh.test.out

index 3140c232775a9e3a6bd6d55f963885b5d65d071c..4557698653c06717aa2ae51361fb36a642662b4d 100644 (file)
@@ -31,5 +31,13 @@ FI" > tmp/test.m4
 m4 tmp/test -DTEST=m4
 # Remove the line with the current date as it changes every time.
 cat tmp/test | grep -v "It was generated from tmp/test.m4"
+# Test multiple arguments to m4().
+echo "Test with multiple arguments passed to m4.
+first: FIRST
+second: SECOND
+" > tmp/test-multiple.m4
+m4 tmp/test-multiple -DFIRST=first -DSECOND=second
+# Remove the line with the current date as it changes every time.
+cat tmp/test-multiple | grep -v "It was generated from tmp/test-multiple.m4"
 
 # vim: ft=sh
index 0bd50a97cef6c9237cc72d99c537541fbddb1b48..e68b9959e8f5b39194e2a96a1a3782781a265c2b 100644 (file)
@@ -10,3 +10,13 @@ m4(): generating 'tmp/test' from 'tmp/test.m4' with options '-DTEST=m4'
 
 Simple test file for m4.
     m4
+m4(): generating 'tmp/test-multiple' from 'tmp/test-multiple.m4' with options '-DFIRST=first -DSECOND=second'
+###################################
+# WARNING! DO NOT EDIT THIS FILE! #
+###################################
+
+
+Test with multiple arguments passed to m4.
+first: first
+second: second
+