From f355cec1a5def19e53b3e920d653dfc6cced000c Mon Sep 17 00:00:00 2001 From: Kris Kwiatkowski Date: Wed, 24 Mar 2021 12:39:33 +0000 Subject: [PATCH] rename test file --- CMakeLists.txt | 8 ++++---- test/{mytest.cpp => ut.cpp} | 0 2 files changed, 4 insertions(+), 4 deletions(-) rename test/{mytest.cpp => ut.cpp} (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 75ba3e3b..cbeee123 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -237,19 +237,19 @@ target_link_libraries( ) add_executable( - mytest + ut - test/mytest.cpp + test/ut.cpp ) target_link_libraries( - mytest + ut gtest gtest_main pqclean_s) target_include_directories( - mytest PRIVATE + ut PRIVATE ${CMAKE_SOURCE_DIR}) diff --git a/test/mytest.cpp b/test/ut.cpp similarity index 100% rename from test/mytest.cpp rename to test/ut.cpp