]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Fix test commands to get proper date and time at start and end of tests.
authorMichael R Sweet <michael.r.sweet@gmail.com>
Wed, 18 Oct 2023 16:30:09 +0000 (12:30 -0400)
committerMichael R Sweet <michael.r.sweet@gmail.com>
Wed, 18 Oct 2023 16:30:09 +0000 (12:30 -0400)
cups/Makefile

index e25b945446439fbb9a1d23b9b67481e9ea281190..c6edfc913dabc60ab875ff48bb6cba5b2d733839 100644 (file)
@@ -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
 
 
 #