diff options
| author | Gordon Sim <gsim@apache.org> | 2008-05-12 13:16:59 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2008-05-12 13:16:59 +0000 |
| commit | ad26a49411512ce59acc895497e867a326879e90 (patch) | |
| tree | 849c3854b55432d4c420c017972dab7f99128774 /cpp/src/tests/Makefile.am | |
| parent | 395677649d65357b91c4136842f8d6214cf186fe (diff) | |
| download | qpid-python-ad26a49411512ce59acc895497e867a326879e90.tar.gz | |
Couple of extra simple tests for publishing and consuming in generic fashion.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@655494 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/Makefile.am')
| -rw-r--r-- | cpp/src/tests/Makefile.am | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/cpp/src/tests/Makefile.am b/cpp/src/tests/Makefile.am index 6fd9cbcb76..cb060cb2b4 100644 --- a/cpp/src/tests/Makefile.am +++ b/cpp/src/tests/Makefile.am @@ -127,7 +127,7 @@ testprogs= \ topic_publisher # echo_service -check_PROGRAMS += $(testprogs) interop_runner +check_PROGRAMS += $(testprogs) interop_runner publish consume TESTS_ENVIRONMENT = VALGRIND=$(VALGRIND) srcdir=$(srcdir) QPID_DATA_DIR= $(srcdir)/run_test @@ -187,6 +187,14 @@ interop_runner_SOURCES = \ TestOptions.h interop_runner_LDADD = $(lib_client) $(lib_common) $(extra_libs) +publish_SOURCES = publish.cpp +publish_LDADD = $(lib_client) $(lib_common) $(extra_libs) + +consume_SOURCES = consume.cpp +consume_LDADD = $(lib_client) $(lib_common) $(extra_libs) + + + # Longer running stability tests, not run by default check: target. # Not run under valgrind, too slow LONG_TESTS=fanout_perftest shared_perftest multiq_perftest topic_perftest |
