From 616f3e28c76f376baba6388905e4ed5937925b80 Mon Sep 17 00:00:00 2001 From: Keith O'Hara Date: Sun, 28 Oct 2018 17:11:56 -0400 Subject: [PATCH] update tests --- .appveyor.yml | 3 +-- README.md | 2 +- tests/CMakeLists.txt | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index d7cea35..bf9ceb7 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -24,7 +24,7 @@ install: - conda info -a - conda install cmake -c conda-forge - cmake -G "NMake Makefiles" -D BUILD_TESTS=1 -D CMAKE_INSTALL_PREFIX=%MINICONDA%\\LIBRARY -D CMAKE_BUILD_TYPE=Release . - - nmake gtest + - nmake gcem_tests - cd tests build_script: @@ -53,4 +53,3 @@ build_script: - .\sqrt.test - .\tan.test - .\tanh.test - - ls -al diff --git a/README.md b/README.md index 7e265b9..97c183b 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ mkdir build cd build cmake ../ -DBUILD_TESTS=1 -DCMAKE_INSTALL_PREFIX=/gcem/install/location -make gtest +make gcem_tests cd tests ./exp.test diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 9f5fcab..cab405b 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -96,6 +96,6 @@ foreach( file_ ${GCEM_TESTS} ) list(APPEND GCEM_TESTS_EX ${testname}) endforeach() -add_custom_target(gtest DEPENDS ${GCEM_TESTS_EX}) +add_custom_target(gcem_tests DEPENDS ${GCEM_TESTS_EX}) #