From 0f86965ca0416347ce4f460fb5eeba7408160119 Mon Sep 17 00:00:00 2001 From: David Benjamin Date: Sat, 9 May 2015 22:52:33 -0400 Subject: [PATCH] Rename evp_test to evp_extra_test. This matches how upstream imported that test. evp_test will be used for the subset of upstream's evp_test which land in our crypto/evp layer. (Some of crypto/evp is in crypto/cipher for us, so those tests will be in a ported cipher_test.) Change-Id: Ic899442794b66350e73a706bb7c77a6ff3d2564b Reviewed-on: https://boringssl-review.googlesource.com/4702 Reviewed-by: Adam Langley --- crypto/evp/CMakeLists.txt | 6 +++--- crypto/evp/{evp_test.cc => evp_extra_test.cc} | 0 util/all_tests.go | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) rename crypto/evp/{evp_test.cc => evp_extra_test.cc} (100%) diff --git a/crypto/evp/CMakeLists.txt b/crypto/evp/CMakeLists.txt index 3dd1958b..5f54e3ab 100644 --- a/crypto/evp/CMakeLists.txt +++ b/crypto/evp/CMakeLists.txt @@ -23,9 +23,9 @@ add_library( add_executable( - evp_test + evp_extra_test - evp_test.cc + evp_extra_test.cc ) add_executable( @@ -34,5 +34,5 @@ add_executable( pbkdf_test.cc ) -target_link_libraries(evp_test crypto) +target_link_libraries(evp_extra_test crypto) target_link_libraries(pbkdf_test crypto) diff --git a/crypto/evp/evp_test.cc b/crypto/evp/evp_extra_test.cc similarity index 100% rename from crypto/evp/evp_test.cc rename to crypto/evp/evp_extra_test.cc diff --git a/util/all_tests.go b/util/all_tests.go index 90aa4241..87af0248 100644 --- a/util/all_tests.go +++ b/util/all_tests.go @@ -74,7 +74,7 @@ var tests = []test{ {"crypto/ec/example_mul"}, {"crypto/ecdsa/ecdsa_test"}, {"crypto/err/err_test"}, - {"crypto/evp/evp_test"}, + {"crypto/evp/evp_extra_test"}, {"crypto/evp/pbkdf_test"}, {"crypto/hkdf/hkdf_test"}, {"crypto/hmac/hmac_test", "crypto/hmac/hmac_tests.txt"},