Skip to content

Commit 616f3e2

Browse files
committed
update tests
1 parent 0050336 commit 616f3e2

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.appveyor.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ install:
2424
- conda info -a
2525
- conda install cmake -c conda-forge
2626
- cmake -G "NMake Makefiles" -D BUILD_TESTS=1 -D CMAKE_INSTALL_PREFIX=%MINICONDA%\\LIBRARY -D CMAKE_BUILD_TYPE=Release .
27-
- nmake gtest
27+
- nmake gcem_tests
2828
- cd tests
2929

3030
build_script:
@@ -53,4 +53,3 @@ build_script:
5353
- .\sqrt.test
5454
- .\tan.test
5555
- .\tanh.test
56-
- ls -al

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ mkdir build
9393

9494
cd build
9595
cmake ../ -DBUILD_TESTS=1 -DCMAKE_INSTALL_PREFIX=/gcem/install/location
96-
make gtest
96+
make gcem_tests
9797

9898
cd tests
9999
./exp.test

tests/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,6 @@ foreach( file_ ${GCEM_TESTS} )
9696
list(APPEND GCEM_TESTS_EX ${testname})
9797
endforeach()
9898

99-
add_custom_target(gtest DEPENDS ${GCEM_TESTS_EX})
99+
add_custom_target(gcem_tests DEPENDS ${GCEM_TESTS_EX})
100100

101101
#

0 commit comments

Comments
 (0)