Rename c++ tests

This commit is contained in:
Duke Leto
2020-11-14 18:44:33 -05:00
parent f3faffc316
commit de6c9e649a
12 changed files with 24 additions and 21 deletions

View File

@@ -1,21 +0,0 @@
TESTS += komodo-test
bin_PROGRAMS += komodo-test
# tool for generating our public parameters
komodo_test_SOURCES = \
test-komodo/main.cpp \
test-komodo/testutils.cpp \
test-komodo/test_cryptoconditions.cpp \
test-komodo/test_coinimport.cpp \
test-komodo/test_eval_bet.cpp \
test-komodo/test_eval_notarisation.cpp \
test-komodo/test_parse_notarisation.cpp \
test-komodo/test_addrman.cpp \
test-komodo/test_netbase_tests.cpp
komodo_test_CPPFLAGS = $(komodod_CPPFLAGS)
komodo_test_LDADD = -lgtest $(komodod_LDADD)
komodo_test_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) -static

View File

@@ -0,0 +1,24 @@
# Copyright (c) 2019-2020 The Hush developers
# Distributed under the GPLv3 software license, see the accompanying
# file COPYING or https://www.gnu.org/licenses/gpl-3.0.en.html
TESTS += hush-test
bin_PROGRAMS += hush-test
# tool for generating our public parameters
hush_test_SOURCES = \
test-hush/main.cpp \
test-hush/testutils.cpp \
test-hush/test_cryptoconditions.cpp \
test-hush/test_coinimport.cpp \
test-hush/test_eval_bet.cpp \
test-hush/test_eval_notarisation.cpp \
test-hush/test_parse_notarisation.cpp \
test-hush/test_addrman.cpp \
test-hush/test_netbase_tests.cpp
hush_test_CPPFLAGS = $(hushd_CPPFLAGS)
hush_test_LDADD = -lgtest $(hushd_LDADD)
hush_test_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) -static