Skip to content

Commit

Permalink
Merge f80e451 into 95a3c22
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardt committed Dec 12, 2019
2 parents 95a3c22 + f80e451 commit cd17393
Show file tree
Hide file tree
Showing 5 changed files with 564 additions and 34 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ script:
- test -f /usr/local/include/verilogAST.hpp

after_success:
- coveralls --root .. -E ".*CMakeFiles.*" -E ".*googletest-src.*" -E ".*tests/.*.cpp.*"
- coveralls --root .. -E ".*CMakeFiles.*" -E ".*googletest-src.*" -E ".*tests/.*.cpp.*" -e miniconda
4 changes: 4 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ if (VERILOGAST_BUILD_TESTS)
add_executable(parameterized_module tests/parameterized_module.cpp)
target_link_libraries(parameterized_module gtest_main ${LIBRARY_NAME})
add_test(NAME parameterized_module_tests COMMAND parameterized_module)

add_executable(transformer tests/transformer.cpp)
target_link_libraries(transformer gtest_main ${LIBRARY_NAME})
add_test(NAME transformer_tests COMMAND transformer)
endif()

install(TARGETS ${LIBRARY_NAME} DESTINATION lib)
Expand Down
Loading

0 comments on commit cd17393

Please sign in to comment.