commit | c96a8881949bcbbd8a9f8866e0460d65161a25cb | [log] [tgz] |
---|---|---|
author | David Benjamin <davidben@google.com> | Wed Dec 21 22:23:28 2016 -0500 |
committer | Adam Langley <agl@google.com> | Wed Jan 04 01:36:49 2017 +0000 |
tree | 3c7c24e106e4b9d6a3e21e788c833bb8337f1b9f | |
parent | 650aa1c80a4ae024012199f085e2e72200e4685e [diff] |
Convert constant_time_test and refcount_test to C++. No source changes, just a rename. Change-Id: Iaef406d2a04dc8c68c94eb2a98eec6378eaeab66 Reviewed-on: https://boringssl-review.googlesource.com/12975 Commit-Queue: David Benjamin <davidben@google.com> Reviewed-by: Adam Langley <agl@google.com>
diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt index fceef1a..97fea5f 100644 --- a/crypto/CMakeLists.txt +++ b/crypto/CMakeLists.txt
@@ -180,7 +180,7 @@ add_executable( constant_time_test - constant_time_test.c + constant_time_test.cc $<TARGET_OBJECTS:test_support> ) @@ -202,7 +202,7 @@ add_executable( refcount_test - refcount_test.c + refcount_test.cc ) target_link_libraries(refcount_test crypto)
diff --git a/crypto/constant_time_test.c b/crypto/constant_time_test.cc similarity index 100% rename from crypto/constant_time_test.c rename to crypto/constant_time_test.cc
diff --git a/crypto/refcount_test.c b/crypto/refcount_test.cc similarity index 100% rename from crypto/refcount_test.c rename to crypto/refcount_test.cc