Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kthohr committed Oct 28, 2018
1 parent 0050336 commit 616f3e2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -53,4 +53,3 @@ build_script:
- .\sqrt.test
- .\tan.test
- .\tanh.test
- ls -al
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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})

#

0 comments on commit 616f3e2

Please sign in to comment.