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-10-15 04:34:40 +0300
committerAdam Langley <alangley@gmail.com>2015-10-26 23:33:44 +0300
commit301afaf2230b5dfa028842296ab63a66f0d1b16c (patch)
tree4722f636831c0a824163c9e4f891e0de4762235f /crypto/hkdf
parentb9c26014dee618cddbcfdf465f906fc69ddd8a75 (diff)
Add a run_tests target to run all tests.
It's very annoying having to remember the right incant every time I want to switch around between my build, build-release, build-asan, etc., output directories. Unfortunately, this target is pretty unfriendly without CMake 3.2+ (and Ninja 1.5+). This combination gives a USES_TERMINAL flag to add_custom_target which uses Ninja's "console" pool, otherwise the output buffering gets in the way. Ubuntu LTS is still on an older CMake, so do a version check in the meantime. CMake also has its own test mechanism (CTest), but this doesn't use it. It seems to prefer knowing what all the tests are and then tries to do its own output management and parallelizing and such. We already have our own runners. all_tests.go could actually be converted tidily, but generate_build_files.py also needs to read it, and runner.go has very specific needs. Naming the target ninja -C build test would be nice, but CTest squats that name and CMake grumps when you use a reserved name, so I've gone with run_tests. Change-Id: Ibd20ebd50febe1b4e91bb19921f3bbbd9fbcf66c Reviewed-on: https://boringssl-review.googlesource.com/6270 Reviewed-by: Adam Langley <alangley@gmail.com>
Diffstat (limited to 'crypto/hkdf')
-rw-r--r--crypto/hkdf/CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/hkdf/CMakeLists.txt b/crypto/hkdf/CMakeLists.txt
index 53bf5586..d9db933e 100644
--- a/crypto/hkdf/CMakeLists.txt
+++ b/crypto/hkdf/CMakeLists.txt
@@ -17,3 +17,4 @@ add_executable(
)
target_link_libraries(hkdf_test crypto)
+add_dependencies(all_tests hkdf_test)