You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by mp...@apache.org on 2016/12/23 01:49:50 UTC

[1/3] mesos git commit: Fixed the CMake test target in stout.

Repository: mesos
Updated Branches:
  refs/heads/master 534713649 -> 7204bd775


Fixed the CMake test target in stout.

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


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

Branch: refs/heads/master
Commit: b84cd22f1678f55f032e747b51fa9c02028af853
Parents: 5347136
Author: Michael Park <mp...@apache.org>
Authored: Thu Dec 22 01:00:47 2016 -0500
Committer: Michael Park <mp...@apache.org>
Committed: Thu Dec 22 11:36:07 2016 -0500

----------------------------------------------------------------------
 3rdparty/stout/tests/CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/b84cd22f/3rdparty/stout/tests/CMakeLists.txt
----------------------------------------------------------------------
diff --git a/3rdparty/stout/tests/CMakeLists.txt b/3rdparty/stout/tests/CMakeLists.txt
index e52aa62..a09693d 100644
--- a/3rdparty/stout/tests/CMakeLists.txt
+++ b/3rdparty/stout/tests/CMakeLists.txt
@@ -100,4 +100,4 @@ add_dependencies(${STOUT_TESTS_TARGET} ${STOUT_TEST_DEPENDENCIES})
 
 # ADD TEST TARGET (runs when you do, e.g., `make check`).
 #########################################################
-add_test(NAME StoutTests COMMAND ./${STOUT_TESTS_TARGET})
+add_test(NAME StoutTests COMMAND ${STOUT_TESTS_TARGET})


[2/3] mesos git commit: Fixed the CMake test target in libprocess.

Posted by mp...@apache.org.
Fixed the CMake test target in libprocess.

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


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

Branch: refs/heads/master
Commit: 9e0c13ce6aed7c5c20f021522db5749e98fc3558
Parents: b84cd22
Author: Michael Park <mp...@apache.org>
Authored: Thu Dec 22 01:00:52 2016 -0500
Committer: Michael Park <mp...@apache.org>
Committed: Thu Dec 22 11:36:19 2016 -0500

----------------------------------------------------------------------
 3rdparty/libprocess/src/tests/CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/9e0c13ce/3rdparty/libprocess/src/tests/CMakeLists.txt
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/src/tests/CMakeLists.txt b/3rdparty/libprocess/src/tests/CMakeLists.txt
index 58e1326..4b80c39 100644
--- a/3rdparty/libprocess/src/tests/CMakeLists.txt
+++ b/3rdparty/libprocess/src/tests/CMakeLists.txt
@@ -84,4 +84,4 @@ add_dependencies(${PROCESS_TESTS_TARGET} test-linkee)
 
 # ADD TEST TARGET (runs when you do, e.g., `make check`).
 #########################################################
-add_test(NAME ProcessTests COMMAND ./${PROCESS_TESTS_TARGET})
+add_test(NAME ProcessTests COMMAND ${PROCESS_TESTS_TARGET})


[3/3] mesos git commit: Fixed the CMake test target in mesos.

Posted by mp...@apache.org.
Fixed the CMake test target in mesos.

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


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

Branch: refs/heads/master
Commit: 7204bd7758570cf2265c2d003029bbe3a8697546
Parents: 9e0c13c
Author: Michael Park <mp...@apache.org>
Authored: Thu Dec 22 01:00:59 2016 -0500
Committer: Michael Park <mp...@apache.org>
Committed: Thu Dec 22 11:37:11 2016 -0500

----------------------------------------------------------------------
 src/tests/CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/7204bd77/src/tests/CMakeLists.txt
----------------------------------------------------------------------
diff --git a/src/tests/CMakeLists.txt b/src/tests/CMakeLists.txt
index 731d58c..b034f1b 100644
--- a/src/tests/CMakeLists.txt
+++ b/src/tests/CMakeLists.txt
@@ -292,4 +292,4 @@ add_dependencies(${TEST_HELPER_TARGET} ${MESOS_TESTS_DEPENDENCIES})
 
 # ADD TEST TARGET (runs when you do, e.g., `make check`).
 #########################################################
-add_test(NAME MesosTests COMMAND ./${MESOS_TESTS_TARGET})
+add_test(NAME MesosTests COMMAND ${MESOS_TESTS_TARGET})