diff options
Diffstat (limited to 'python/pymake/tests/depfailedj.mk')
-rw-r--r-- | python/pymake/tests/depfailedj.mk | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/python/pymake/tests/depfailedj.mk b/python/pymake/tests/depfailedj.mk new file mode 100644 index 000000000..a94c74f6f --- /dev/null +++ b/python/pymake/tests/depfailedj.mk @@ -0,0 +1,10 @@ +#T returncode: 2 +#T commandline: ['-j4'] + +$(shell touch foo.in) + +all: foo.in foo.out missing + @echo TEST-PASS + +%.out: %.in + cp $< $@ |