aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorRob Percival <robpercival@google.com>2016-01-18 10:26:17 +0000
committerRichard Levitte <levitte@openssl.org>2016-02-08 13:57:29 +0100
commitb00387a0a3cc9e340915eeb878e5b45bbb9f1ccd (patch)
treeabb9827d309255db4334a74a6312d9440607974e /util
parent6b9686e694d602640a565e8cbbe80857db832571 (diff)
downloadopenssl-b00387a0a3cc9e340915eeb878e5b45bbb9f1ccd.zip
openssl-b00387a0a3cc9e340915eeb878e5b45bbb9f1ccd.tar.gz
openssl-b00387a0a3cc9e340915eeb878e5b45bbb9f1ccd.tar.bz2
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@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'util')
-rw-r--r--util/pl/BC-32.pl2
-rw-r--r--util/pl/VC-32.pl2
-rw-r--r--util/pl/unix.pl2
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