From 3493b39d17bc064dcf0e81bceeeb3dff18cb1944 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Wed, 16 Aug 2017 14:33:13 +0100 Subject: [PATCH] Copy dlls into fuzz directory This should fix the recent AppVeyor failures. [extended tests] Reviewed-by: Andy Polyakov (Merged from https://github.com/openssl/openssl/pull/4171) (cherry picked from commit 30bb02597df9a79b46bae2ddc9885a35286ed205) --- Configurations/windows-makefile.tmpl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Configurations/windows-makefile.tmpl b/Configurations/windows-makefile.tmpl index e86ba27dd1..d90174a845 100644 --- a/Configurations/windows-makefile.tmpl +++ b/Configurations/windows-makefile.tmpl @@ -236,6 +236,7 @@ libclean: "$(PERL)" -e "map { m/(.*)\.dll$$/; unlink glob """$$1.*"""; } @ARGV" $(SHLIBS) "$(PERL)" -e "map { m/(.*)\.dll$$/; unlink glob """apps/$$1.*"""; } @ARGV" $(SHLIBS) "$(PERL)" -e "map { m/(.*)\.dll$$/; unlink glob """test/$$1.*"""; } @ARGV" $(SHLIBS) + "$(PERL)" -e "map { m/(.*)\.dll$$/; unlink glob """fuzz/$$1.*"""; } @ARGV" $(SHLIBS) -del /Q /F $(LIBS) -del /Q ossl_static.pdb @@ -506,8 +507,10 @@ $objs $shlib.res$linklibs \$(EX_LIBS) \$(MT) \$(MTFLAGS) \$(MTINFLAG)$shlib$shlibext.manifest \$(MTOUTFLAG)$shlib$shlibext IF EXIST apps\\$shlib$shlibext DEL /Q /F apps\\$shlib$shlibext IF EXIST test\\$shlib$shlibext DEL /Q /F test\\$shlib$shlibext + IF EXIST fuzz\\$shlib$shlibext DEL /Q /F fuzz\\$shlib$shlibext COPY $shlib$shlibext apps COPY $shlib$shlibext test + COPY $shlib$shlibext fuzz EOF } sub obj2dso { -- 2.25.1