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 | ac34587bb1047b433df6d87554a0053de67b361a (patch) | |
| tree | e4317fe255e34cabd2fcbb20f76457035cabc414 /qpid/cpp/src/tests/Makefile.am | |
| parent | 9d6d48893097b20fdce73ee8e02c9a8853474f0a (diff) | |
| download | qpid-python-ac34587bb1047b433df6d87554a0053de67b361a.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@655494 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/Makefile.am')
| -rw-r--r-- | qpid/cpp/src/tests/Makefile.am | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/Makefile.am b/qpid/cpp/src/tests/Makefile.am index 6fd9cbcb76..cb060cb2b4 100644 --- a/qpid/cpp/src/tests/Makefile.am +++ b/qpid/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 |
