diff options
| author | Hugo Lindström <hugolm84@gmail.com> | 2020-08-08 00:19:22 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-07 15:19:22 -0700 |
| commit | 066f6ce214effb78382a11707baa7ca68b8286c7 (patch) | |
| tree | fa2fb25f8e881b5006ab7974d29165bc5359e65d /perf | |
| parent | 36d803182ceb1ef6bd8a0646e4245c6ee67e4773 (diff) | |
| download | nng-066f6ce214effb78382a11707baa7ca68b8286c7.tar.gz nng-066f6ce214effb78382a11707baa7ca68b8286c7.tar.bz2 nng-066f6ce214effb78382a11707baa7ca68b8286c7.zip | |
Prefix all tests with PROJECT_NAME (#1276)
Diffstat (limited to 'perf')
| -rw-r--r-- | perf/CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/perf/CMakeLists.txt b/perf/CMakeLists.txt index ff340034..5d780f2f 100644 --- a/perf/CMakeLists.txt +++ b/perf/CMakeLists.txt @@ -43,11 +43,11 @@ if (NNG_TESTS) add_nng_perf(inproc_thr) add_nng_perf(inproc_lat) - add_test (NAME inproc_lat COMMAND inproc_lat 64 10000) - set_tests_properties (inproc_lat PROPERTIES TIMEOUT 30) + add_test (NAME ${PROJECT_NAME}.inproc_lat COMMAND inproc_lat 64 10000) + set_tests_properties (${PROJECT_NAME}.inproc_lat PROPERTIES TIMEOUT 30) - add_test (NAME inproc_thr COMMAND inproc_thr 1400 10000) - set_tests_properties (inproc_thr PROPERTIES TIMEOUT 30) + add_test (NAME ${PROJECT_NAME}.inproc_thr COMMAND inproc_thr 1400 10000) + set_tests_properties (${PROJECT_NAME}.inproc_thr PROPERTIES TIMEOUT 30) add_executable (pubdrop pubdrop.c) |
