summaryrefslogtreecommitdiffstats
path: root/Configurations
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2023-12-05 09:26:36 +0100
committerRichard Levitte <levitte@openssl.org>2023-12-08 09:03:04 +0100
commita223bfcb89df54093a1858817e02fd6e0cb38219 (patch)
tree214b361ff13863eeb628266d193029056141c97e /Configurations
parentab2b19e3ccd53932c68d2a2408af83af585c89b0 (diff)
Add the 'run_tests' target to the Windows build file template as well
For some reason, it was added to the Unix and VMS build templates, but Windows was forgotten. Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Neil Horman <nhorman@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22948)
Diffstat (limited to 'Configurations')
-rw-r--r--Configurations/windows-makefile.tmpl2
1 files changed, 2 insertions, 0 deletions
diff --git a/Configurations/windows-makefile.tmpl b/Configurations/windows-makefile.tmpl
index ae6daa2256..504e4bc803 100644
--- a/Configurations/windows-makefile.tmpl
+++ b/Configurations/windows-makefile.tmpl
@@ -440,6 +440,8 @@ all: build_sw build_docs
test: tests
{- dependmagic('tests'); -}: build_programs_nodep build_modules_nodep copy-utils
+ $(MAKE) /$(MAKEFLAGS) run_tests
+run_tests:
@{- output_off() if $disabled{tests}; "\@rem" -}
cmd /C "set "SRCTOP=$(SRCDIR)" & set "BLDTOP=$(BLDDIR)" & set "PERL=$(PERL)" & set "FIPSKEY=$(FIPSKEY)" & "$(PERL)" "$(SRCDIR)\test\run_tests.pl" $(TESTS)"
@{- if ($disabled{tests}) { output_on(); } else { output_off(); } "" -}