From 1338d9b776bc4f5d0b19bc1ec66241271811768e Mon Sep 17 00:00:00 2001 From: Bertram Felgenhauer Date: Wed, 15 Jul 2020 16:26:15 +0200 Subject: [PATCH] add target for *-strictness tests (#662) --- containers-tests/tests/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/containers-tests/tests/Makefile b/containers-tests/tests/Makefile index ac466575e..2f61b7053 100644 --- a/containers-tests/tests/Makefile +++ b/containers-tests/tests/Makefile @@ -10,6 +10,9 @@ all: %-properties: %-properties.hs force ghc -I../include -O2 -DTESTING $< -i.. -o $@ -outputdir tmp/$@ +%-strictness: %-strictness.hs force + ghc -I../include -O2 -DTESTING $< -i.. -o $@ -outputdir tmp/$@ + %-strict-properties: %-properties.hs force ghc -I../include -O2 -DTESTING -DSTRICT $< -o $@ -i.. -outputdir tmp/$@