diff options
author | Richard Levitte <levitte@openssl.org> | 2023-12-05 09:26:36 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2023-12-07 07:38:21 +0100 |
commit | ae64a116f05bade92fa2794394e44127bdaa7436 (patch) | |
tree | 4564cc91e8270be6c3a1643b1ab730bf6a7c7f6a /Configurations | |
parent | Make sure that the test / tests build target run 'run_tests' last (diff) | |
download | openssl-ae64a116f05bade92fa2794394e44127bdaa7436.tar.xz openssl-ae64a116f05bade92fa2794394e44127bdaa7436.zip |
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: Todd Short <todd.short@me.com>
(Merged from https://github.com/openssl/openssl/pull/22947)
Diffstat (limited to 'Configurations')
-rw-r--r-- | Configurations/windows-makefile.tmpl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Configurations/windows-makefile.tmpl b/Configurations/windows-makefile.tmpl index 20036f5c3d..894834cfb7 100644 --- a/Configurations/windows-makefile.tmpl +++ b/Configurations/windows-makefile.tmpl @@ -447,6 +447,8 @@ all: build_sw {- "build_docs" if !$disabled{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(); } "" -} |