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 <agl@google.com>
diff --git a/crypto/evp/CMakeLists.txt b/crypto/evp/CMakeLists.txt
index 3dd1958..5f54e3a 100644
--- a/crypto/evp/CMakeLists.txt
+++ b/crypto/evp/CMakeLists.txt
@@ -23,9 +23,9 @@
 
 
 add_executable(
-  evp_test
+  evp_extra_test
 
-  evp_test.cc
+  evp_extra_test.cc
 )
 
 add_executable(
@@ -34,5 +34,5 @@
   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 90aa424..87af024 100644
--- a/util/all_tests.go
+++ b/util/all_tests.go
@@ -74,7 +74,7 @@
 	{"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"},