mirror of
https://github.com/nasa/trick.git
synced 2024-12-19 21:27:54 +00:00
5f6a5de070
* Add tests for alternate ways to open VS port * Don't connect to varserv when quiet=true in trickops * Add print to try to help debug hanging trickops test * Handle multicast connect failures gracefully * Multicast is disabled by default on mac * Forgot an important return value * Take away retries * Fix issue with restart test * Revert trickops debugging changes * Remove debugging accidentally left in [no ci] * whoops * Allow retries * Update trickops.py * sim test adjustments * Add docs [no ci] * wording [no ci] * Cleanup * Remove large messages, test that one in unit tests
15 lines
560 B
Makefile
15 lines
560 B
Makefile
|
|
TRICK_CFLAGS += -I./models
|
|
TRICK_CXXFLAGS += -I./models
|
|
|
|
all: test_client
|
|
clean: clean_test_client
|
|
|
|
TEST_CLIENT_LIBS += -L${GTEST_HOME}/lib64 -L${GTEST_HOME}/lib -lgtest -lgtest_main -lpthread -L${TRICK_LIB_DIR} -ltrick_var_binary_parser
|
|
|
|
test_client: models/test_client/test_client.cpp
|
|
cd models/test_client; $(TRICK_CXX) test_client.cpp -o test_client $(TRICK_CXXFLAGS) $(TRICK_SYSTEM_CXXFLAGS) $(TRICK_TEST_FLAGS) -Wno-write-strings -Wno-sign-compare -I$(TRICK_HOME)/include $(TEST_CLIENT_LIBS)
|
|
|
|
clean_test_client:
|
|
rm -f models/test_client/test_client
|
|
|