From cc65d748d1474f18b9c1a1ab8e66326b28254993 Mon Sep 17 00:00:00 2001 From: Guido Kanschat Date: Thu, 6 Oct 2005 15:02:02 +0000 Subject: [PATCH] add working directory to very line of report git-svn-id: https://svn.dealii.org/trunk@11568 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/Makefile.rules | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Makefile.rules b/tests/Makefile.rules index c9e42c323e..5e8f3fcf8b 100644 --- a/tests/Makefile.rules +++ b/tests/Makefile.rules @@ -117,9 +117,9 @@ endif report: for test in $(sort $(tests)) ; do \ if (($(MAKE) $$test.OK stop_on_error=on 2>&1) > /dev/null); then \ - echo `date -u +"%Y-%m-%d %H:%M"` + $$test ; \ + echo `date -u +"%Y-%m-%d %H:%M"` + $(WORKDIR)/$$test ; \ else \ - echo `date -u +"%Y-%m-%d %H:%M"` - $$test ; \ + echo `date -u +"%Y-%m-%d %H:%M"` - $(WORKDIR)/$$test ; \ fi ; \ done -- 2.39.5