Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@chromium.org>2015-05-16 02:08:49 +0300
committerAdam Langley <agl@google.com>2015-05-21 20:59:48 +0300
commit0b635c52b241af78b69addecbb84c7d55f3cabb4 (patch)
treeffd170189c575fbe8e359a6d4dbe79d841b9138f /crypto/digest
parent3e3090dc50193f32219d24f62145bfbe3d8ee7fc (diff)
Add malloc test support to unit tests.
Currently far from passing and I haven't even tried with a leak checker yet. Also bn_test is slow. Change-Id: I4fe2783aa5f7897839ca846062ae7e4a367d2469 Reviewed-on: https://boringssl-review.googlesource.com/4794 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'crypto/digest')
-rw-r--r--crypto/digest/CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/digest/CMakeLists.txt b/crypto/digest/CMakeLists.txt
index 8cab46a9..816d1164 100644
--- a/crypto/digest/CMakeLists.txt
+++ b/crypto/digest/CMakeLists.txt
@@ -13,6 +13,8 @@ add_executable(
digest_test
digest_test.cc
+
+ $<TARGET_OBJECTS:test_support>
)
target_link_libraries(digest_test crypto)