[openssl-commits] [openssl] master update

Richard Levitte levitte at openssl.org
Mon Feb 8 12:58:29 UTC 2016


The branch master has been updated
       via  b00387a0a3cc9e340915eeb878e5b45bbb9f1ccd (commit)
      from  6b9686e694d602640a565e8cbbe80857db832571 (commit)


- Log -----------------------------------------------------------------
commit b00387a0a3cc9e340915eeb878e5b45bbb9f1ccd
Author: Rob Percival <robpercival at google.com>
Date:   Mon Jan 18 10:26:17 2016 +0000

    Make TESTS= work with "nmake -f ms/ntdll.mak tests"
    
    This works on Linux with Make already, and allows running only specified
    tests.
    
    Reviewed-by: Ben Laurie <ben at openssl.org>
    Reviewed-by: Richard Levitte <levitte at openssl.org>

-----------------------------------------------------------------------

Summary of changes:
 util/pl/BC-32.pl | 2 +-
 util/pl/VC-32.pl | 2 +-
 util/pl/unix.pl  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/util/pl/BC-32.pl b/util/pl/BC-32.pl
index c22acec..98bd0ff 100644
--- a/util/pl/BC-32.pl
+++ b/util/pl/BC-32.pl
@@ -114,7 +114,7 @@ $target: $deps force.$target
 	set BIN_D=\$(BIN_D)
 	set TEST_D=\$(TEST_D)
 	set PERL=\$(PERL)
-	\$(PERL) test\\$test_cmd
+	\$(PERL) test\\$test_cmd \$(TESTS)
 force.$target:
 EOF
 }
diff --git a/util/pl/VC-32.pl b/util/pl/VC-32.pl
index 1a34bb3..b9ae8a5 100644
--- a/util/pl/VC-32.pl
+++ b/util/pl/VC-32.pl
@@ -320,7 +320,7 @@ $target: $deps force.$target
 	set BIN_D=\$(BIN_D)
 	set TEST_D=\$(TEST_D)
 	set PERL=\$(PERL)
-	\$(PERL) test\\$test_cmd
+	\$(PERL) test\\$test_cmd \$(TESTS)
 force.$target:
 EOF
 }
diff --git a/util/pl/unix.pl b/util/pl/unix.pl
index c1b2c26..28bd039 100644
--- a/util/pl/unix.pl
+++ b/util/pl/unix.pl
@@ -203,7 +203,7 @@ sub do_test_rule {
     my $ret = <<"EOF";
 $target: $deps force.$target
 	TOP=. BIN_D=\$(BIN_D) TEST_D=\$(TEST_D) \\
-	    PERL=\$(PERL) \$(PERL) test/$test_cmd
+	    PERL=\$(PERL) \$(PERL) test/$test_cmd \$(TESTS)
 force.$target:
 
 EOF


More information about the openssl-commits mailing list