diff options
Diffstat (limited to 'tests/scripts/misc')
-rw-r--r-- | tests/scripts/misc/general4 | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/scripts/misc/general4 b/tests/scripts/misc/general4 index ccccf88..e67323b 100644 --- a/tests/scripts/misc/general4 +++ b/tests/scripts/misc/general4 @@ -80,4 +80,17 @@ dir/subdir/%.$$a: dir/subdir/%.$$b ; @echo 'cp $< $@' !, '', "mkdir -p dir/subdir\ntouch dir/subdir/file.\$b\ncp dir/subdir/file.\$b dir/subdir/file.\$a\n"); +# Test odd whitespace at the beginning of a line + +run_make_test(" +all: + \f + + \\ + \f \\ + \013 \\ +all: ; \@echo hi +", + '', "hi\n"); + 1; |