Author: kpvdr
Date: 2009-11-03 15:15:55 -0500 (Tue, 03 Nov 2009)
New Revision: 3691
Modified:
store/trunk/cpp/Makefile.am
store/trunk/cpp/tests/Makefile.am
Log:
Added a make check-short target, intended to be a minimal build smoke-test, not a
comprehensive check of all functionality. This is intended for use in automated build
systems such as Brew where full-length testing is inappropriate.
Modified: store/trunk/cpp/Makefile.am
===================================================================
--- store/trunk/cpp/Makefile.am 2009-11-03 17:10:20 UTC (rev 3690)
+++ store/trunk/cpp/Makefile.am 2009-11-03 20:15:55 UTC (rev 3691)
@@ -59,3 +59,6 @@
check-long:
$(MAKE) -C tests check-long
+check-short:
+ $(MAKE) -C tests check-short
+
Modified: store/trunk/cpp/tests/Makefile.am
===================================================================
--- store/trunk/cpp/tests/Makefile.am 2009-11-03 17:10:20 UTC (rev 3690)
+++ store/trunk/cpp/tests/Makefile.am 2009-11-03 20:15:55 UTC (rev 3691)
@@ -47,6 +47,12 @@
run_long_python_tests \
clean.sh
+SHORT_TESTS = \
+ SimpleTest \
+ TransactionalTest \
+ system_test.sh \
+ clean.sh
+
check_PROGRAMS = \
SimpleTest \
OrderingTest \
@@ -100,3 +106,6 @@
endif
$(MAKE) check TESTS="$(LONG_TESTS)" SUBDIRS=.
+check-short:
+ $(MAKE) check TESTS="$(SHORT_TESTS)" SUBDIRS=.
+
\ No newline at end of file