You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by be...@apache.org on 2011/06/05 10:22:03 UTC

svn commit: r1132000 - /incubator/mesos/trunk/src/tests/external_test.cpp

Author: benh
Date: Sun Jun  5 08:22:03 2011
New Revision: 1132000

URL: http://svn.apache.org/viewvc?rev=1132000&view=rev
Log:
Look for external tests in bin rather than src

Modified:
    incubator/mesos/trunk/src/tests/external_test.cpp

Modified: incubator/mesos/trunk/src/tests/external_test.cpp
URL: http://svn.apache.org/viewvc/incubator/mesos/trunk/src/tests/external_test.cpp?rev=1132000&r1=1131999&r2=1132000&view=diff
==============================================================================
--- incubator/mesos/trunk/src/tests/external_test.cpp (original)
+++ incubator/mesos/trunk/src/tests/external_test.cpp Sun Jun  5 08:22:03 2011
@@ -31,7 +31,7 @@ void mesos::internal::test::runExternalT
   // Create and go into the test's work directory
   enterTestDirectory(testCase, testName);
   // Figure out the absolute path to the test script
-  string script = mesosHome + "/src/tests/external/" + testCase
+  string script = mesosHome + "/bin/tests/external/" + testCase
                              + "/" + testName + ".sh";
   // Fork a process to change directory and run the test
   pid_t pid;