mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Merge pull request #992
f1ba51cremove -Wall from coverage arguments (Jacob Torrey)f017fecBuild the core_tests under Travis (Jacob Torrey)e0bf02aStreamline release-test target (Jacob Torrey)baf4574Update badge to point to monero's coveralls (Jacob Torrey)d1dc2c3Re-enable Travis IRC notifications (Jacob Torrey)9c71b9eSilence coveralls to prevent 4MB logs (Jacob Torrey)65041fbDisabled libwallet_api_test until Issue #895 resolved (Jacob Torrey)a450138Disable core_tests on Travis-CI (Jacob Torrey)650afacAdded -j2 to Makefile and clean up matrix (Jacob Torrey)256dec0Streamline test building target (Jacob Torrey)14915c2Ensure tests are built prior to testing (Jacob Torrey)fe4992bAdded coverage g++ commands (Jacob Torrey)497b24fUpdate .travis.yml (Jacob Torrey)678467dUpdate for the current make environment (Jacob Torrey)abcac26Fixed tab/space issue on YAML (Jacob Torrey)7351a11Converted to a build matrix for testing and release (Jacob Torrey)342dbfbPrep for coveralls (Jacob Torrey)
This commit is contained in:
commit
e9d4d224e3
5 changed files with 121 additions and 37 deletions
|
|
@ -63,7 +63,9 @@ add_subdirectory(unit_tests)
|
|||
add_subdirectory(difficulty)
|
||||
add_subdirectory(hash)
|
||||
add_subdirectory(net_load_tests)
|
||||
add_subdirectory(libwallet_api_tests)
|
||||
|
||||
# Disabled until issue #895 is resolved
|
||||
#add_subdirectory(libwallet_api_tests)
|
||||
|
||||
# add_subdirectory(daemon_tests)
|
||||
|
||||
|
|
@ -86,5 +88,11 @@ add_test(
|
|||
NAME hash-target
|
||||
COMMAND hash-target-tests)
|
||||
|
||||
add_custom_target(tests DEPENDS coretests difficulty hash performance_tests core_proxy unit_tests)
|
||||
# Skip the core_tests if we are running in Travis-CI because they will take too long
|
||||
if (DEFINED ENV{TRAVIS})
|
||||
add_custom_target(tests DEPENDS difficulty hash performance_tests core_proxy unit_tests)
|
||||
else ()
|
||||
add_custom_target(tests DEPENDS coretests difficulty hash performance_tests core_proxy unit_tests)
|
||||
endif ()
|
||||
|
||||
set_property(TARGET gtest gtest_main hash-target-tests tests PROPERTY FOLDER "tests")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue