Index: webrtc/test/testsupport/fileutils_unittest.cc |
diff --git a/webrtc/test/testsupport/fileutils_unittest.cc b/webrtc/test/testsupport/fileutils_unittest.cc |
index b9ac9133267086ab0537299a414c49a1e720ad2a..e6699afbc18d4be3e936710291a3bc01acf9714a 100644 |
--- a/webrtc/test/testsupport/fileutils_unittest.cc |
+++ b/webrtc/test/testsupport/fileutils_unittest.cc |
@@ -54,17 +54,10 @@ class FileUtilsTest : public testing::Test { |
std::string FileUtilsTest::original_working_dir_ = ""; |
-// Tests that the project root path is returned for the default working |
+// Tests that the project output dir path is returned for the default working |
// directory that is automatically set when the test executable is launched. |
// The test is not fully testing the implementation, since we cannot be sure |
// of where the executable was launched from. |
-TEST_F(FileUtilsTest, ProjectRootPath) { |
- std::string project_root = webrtc::test::ProjectRootPath(); |
- // Not very smart, but at least tests something. |
- ASSERT_GT(project_root.length(), 0u); |
-} |
- |
-// Similar to the above test, but for the output dir |
#if defined(WEBRTC_ANDROID) |
#define MAYBE_OutputPathFromUnchangedWorkingDir \ |
DISABLED_OutputPathFromUnchangedWorkingDir |