[Lldb-commits] [lldb] r237291 - Fix broken test, this wasn't supposed to get committed.

Zachary Turner zturner at google.com
Wed May 13 13:21:22 PDT 2015


Author: zturner
Date: Wed May 13 15:21:22 2015
New Revision: 237291

URL: http://llvm.org/viewvc/llvm-project?rev=237291&view=rev
Log:
Fix broken test, this wasn't supposed to get committed.

Modified:
    lldb/trunk/test/functionalities/paths/TestPaths.py

Modified: lldb/trunk/test/functionalities/paths/TestPaths.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/paths/TestPaths.py?rev=237291&r1=237290&r2=237291&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/paths/TestPaths.py (original)
+++ lldb/trunk/test/functionalities/paths/TestPaths.py Wed May 13 15:21:22 2015
@@ -28,12 +28,6 @@ class TestPaths(TestBase):
             # No directory path types should have the filename set
             self.assertTrue (f.GetFilename() == None);
 
-    def test_filespec_resolve_doesnt_prepend_cwd_if_file_doesnt_exist (self):
-        file_only = lldb.SBFileSpec("VeryUnlikelToExistInTheCurrentWorkingDirectory", True)
-        # SBFileSpec(path, True) should not prepend the current-working-directory to the
-        # file path if it doesn't exist in the current directory.
-        self.assertTrue (file_only.GetDirectory() == None)
-
     def test_directory_doesnt_end_with_slash(self):
         current_directory_spec = lldb.SBFileSpec(os.path.curdir)
         current_directory_string = current_directory_spec.GetDirectory()





More information about the lldb-commits mailing list