mirror of https://github.com/openssl/openssl.git
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)
(cherry picked from commit ae64a116f0
)
This commit is contained in:
parent
075c73df53
commit
ae5a9874e7
|
@ -440,6 +440,8 @@ all: build_sw {- "build_docs" if !$disabled{docs}; -}
|
||||||
|
|
||||||
test: tests
|
test: tests
|
||||||
{- dependmagic('tests'); -}: build_programs_nodep build_modules_nodep copy-utils
|
{- dependmagic('tests'); -}: build_programs_nodep build_modules_nodep copy-utils
|
||||||
|
$(MAKE) /$(MAKEFLAGS) run_tests
|
||||||
|
run_tests:
|
||||||
@{- output_off() if $disabled{tests}; "\@rem" -}
|
@{- 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)"
|
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(); } "" -}
|
@{- if ($disabled{tests}) { output_on(); } else { output_off(); } "" -}
|
||||||
|
|
Loading…
Reference in New Issue