You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by bm...@apache.org on 2013/06/14 20:25:22 UTC

[1/2] git commit: Fixed libprocess tests to write to stderr when using newer versions of autotools.

Updated Branches:
  refs/heads/master b51847af5 -> a66f419a6


Fixed libprocess tests to write to stderr when using newer versions
of autotools.

Review: https://reviews.apache.org/r/11877


Project: http://git-wip-us.apache.org/repos/asf/incubator-mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mesos/commit/b46272f3
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mesos/tree/b46272f3
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mesos/diff/b46272f3

Branch: refs/heads/master
Commit: b46272f3665e20cf3dc9872332a457a3070e4302
Parents: b51847a
Author: Benjamin Mahler <bm...@twitter.com>
Authored: Fri Jun 14 11:03:06 2013 -0700
Committer: Benjamin Mahler <bm...@twitter.com>
Committed: Fri Jun 14 11:24:24 2013 -0700

----------------------------------------------------------------------
 3rdparty/libprocess/3rdparty/Makefile.am | 7 ++++++-
 3rdparty/libprocess/Makefile.am          | 7 ++++++-
 2 files changed, 12 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mesos/blob/b46272f3/3rdparty/libprocess/3rdparty/Makefile.am
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/3rdparty/Makefile.am b/3rdparty/libprocess/3rdparty/Makefile.am
index 7a9ede6..ade6688 100644
--- a/3rdparty/libprocess/3rdparty/Makefile.am
+++ b/3rdparty/libprocess/3rdparty/Makefile.am
@@ -149,7 +149,12 @@ stout_tests_LDADD =			\
   $(GLOG)/libglog.la			\
   $(PROTOBUF)/src/libprotobuf.la
 
-TESTS = stout-tests
+# We use a check-local target for now to avoid the parallel test
+# runner that ships with newer versions of autotools.
+# See the following discussion for the workaround:
+# http://lists.gnu.org/archive/html/automake/2013-01/msg00051.html
+check-local: stout-tests
+	./stout-tests
 
 # Dependencies for all-local.
 ALL_LOCAL =				\

http://git-wip-us.apache.org/repos/asf/incubator-mesos/blob/b46272f3/3rdparty/libprocess/Makefile.am
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/Makefile.am b/3rdparty/libprocess/Makefile.am
index 9facdd9..2819734 100644
--- a/3rdparty/libprocess/Makefile.am
+++ b/3rdparty/libprocess/Makefile.am
@@ -112,7 +112,12 @@ tests_CPPFLAGS =			\
 
 tests_LDADD = 3rdparty/libgmock.la libprocess.la
 
-TESTS = tests
+# We use a check-local target for now to avoid the parallel test
+# runner that ships with newer versions of autotools.
+# See the following discussion for the workaround:
+# http://lists.gnu.org/archive/html/automake/2013-01/msg00051.html
+check-local: tests
+	./tests
 
 # TODO(benh): Fix shared builds (tests need libglog, libev, etc).
 


[2/2] git commit: Fixed mesos tests to write to stderr when using newer versions of autotools.

Posted by bm...@apache.org.
Fixed mesos tests to write to stderr when using newer versions of
autotools.

Review: https://reviews.apache.org/r/11878


Project: http://git-wip-us.apache.org/repos/asf/incubator-mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mesos/commit/a66f419a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mesos/tree/a66f419a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mesos/diff/a66f419a

Branch: refs/heads/master
Commit: a66f419a6fa151c205225bdf12e2356d752f65e9
Parents: b46272f
Author: Benjamin Mahler <bm...@twitter.com>
Authored: Fri Jun 14 11:03:33 2013 -0700
Committer: Benjamin Mahler <bm...@twitter.com>
Committed: Fri Jun 14 11:24:50 2013 -0700

----------------------------------------------------------------------
 src/Makefile.am | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mesos/blob/a66f419a/src/Makefile.am
----------------------------------------------------------------------
diff --git a/src/Makefile.am b/src/Makefile.am
index e67b342..23733b5 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -69,7 +69,6 @@ check_PROGRAMS =
 dist_check_SCRIPTS =
 check_SCRIPTS =
 BUILT_SOURCES =
-TESTS =
 CLEANFILES =
 EXTRA_DIST =
 PHONY_TARGETS =
@@ -878,7 +877,12 @@ dist_check_SCRIPTS +=				\
   tests/python_framework_test.sh		\
   tests/killtree_test.sh
 
-TESTS += mesos-tests
+# We use a check-local target for now to avoid the parallel test
+# runner that ships with newer versions of autotools.
+# See the following discussion for the workaround:
+# http://lists.gnu.org/archive/html/automake/2013-01/msg00051.html
+check-local: mesos-tests
+	./mesos-tests
 
 clean-local: clean-java clean-python