From fcf1e8c78eff34f1be8bbe3d54a03a6414cc7e82 Mon Sep 17 00:00:00 2001 From: Jiri Vlasak Date: Fri, 23 Aug 2019 14:04:29 +0200 Subject: [PATCH] Add blank test template --- CMakeLists.txt | 4 ++++ src/test-template.cc | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 src/test-template.cc diff --git a/CMakeLists.txt b/CMakeLists.txt index 3ddd597..289d51a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,3 +34,7 @@ add_custom_command(TARGET ut POST_BUILD COMMAND ./wvtestrun ../build/ut WORKING_DIRECTORY ../wvtest ) + +add_executable(test-template + src/test-template.cc +) diff --git a/src/test-template.cc b/src/test-template.cc new file mode 100644 index 0000000..4be4888 --- /dev/null +++ b/src/test-template.cc @@ -0,0 +1,4 @@ +int main() +{ + return 0; +} -- 2.39.2