diff options
Diffstat (limited to 'Rules')
-rw-r--r-- | Rules | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Rules b/Rules index 49ca8ea7a2..3e305ddaa5 100644 --- a/Rules +++ b/Rules @@ -183,9 +183,11 @@ make-test-out = $(test-wrapper-env) \ GCONV_PATH=$(common-objpfx)iconvdata LC_ALL=C \ $($*-ENV) $(host-test-program-cmd) $($*-ARGS) $(objpfx)%.out: %.input $(objpfx)% - $(make-test-out) > $@ < $(word 1,$^) + $(make-test-out) > $@ < $(word 1,$^); \ + $(evaluate-test) $(objpfx)%.out: /dev/null $(objpfx)% # Make it 2nd arg for canned sequence. - $(make-test-out) > $@ + $(make-test-out) > $@; \ + $(evaluate-test) endif # tests |