forked from lix-project/lix
jade
ed95b02215
This parser can be reused for other purposes. It's inspired by
https://bitheap.org/cram/
Although eelco's impostor exists https://github.com/mobusoperandi/eelco,
it is not very nice to depend on out of tree testing frameworks with no
way to customize them.
Change-Id: Ifca50177e09730182baf0ebf829c3505bbb0274a
20 lines
621 B
Makefile
20 lines
621 B
Makefile
programs += test-repl-characterization
|
|
|
|
installcheck: test-repl-characterization_RUN
|
|
|
|
test-repl-characterization_DIR := $(d)
|
|
|
|
test-repl-characterization_ENV := _NIX_TEST_UNIT_DATA=$(shell realpath "$(d)")/data
|
|
|
|
# do not install
|
|
test-repl-characterization_INSTALL_DIR :=
|
|
|
|
test-repl-characterization_SOURCES := \
|
|
$(wildcard $(d)/*.cc) \
|
|
|
|
test-repl-characterization_CXXFLAGS += -I src/libutil -I tests/unit/libutil-support
|
|
|
|
test-repl-characterization_LIBS = libutil libutil-test-support
|
|
|
|
test-repl-characterization_LDFLAGS = $(THREAD_LDFLAGS) $(SODIUM_LIBS) $(EDITLINE_LIBS) $(BOOST_LDFLAGS) $(LOWDOWN_LIBS) $(GTEST_LIBS)
|