From: Michael R Sweet Date: Wed, 18 Oct 2023 16:30:09 +0000 (-0400) Subject: Fix test commands to get proper date and time at start and end of tests. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=df56255beb028ec4cf8bd3266be54ebc4dbb3517;p=thirdparty%2Fcups.git Fix test commands to get proper date and time at start and end of tests. --- diff --git a/cups/Makefile b/cups/Makefile index e25b945446..c6edfc913d 100644 --- a/cups/Makefile +++ b/cups/Makefile @@ -238,7 +238,7 @@ libs: $(LIBTARGETS) # test: unittests - echo "Tests started at $(date)..." >test.log + echo "Tests started at $$(date)..." >test.log echo Running array API tests... ./testarray >>test.log echo Running file API tests... @@ -278,7 +278,7 @@ test: unittests ./testtestpage >>test.log # echo Fuzzing IPP API... # ./fuzzipp >>test.log - echo "Tests finished at $(date)..." >>test.log + echo "Tests finished at $$(date)..." >>test.log #