From 535a69112bbe112d154f9f4d7511535db97014c7 Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Wed, 13 May 2015 20:21:22 +0000 Subject: [PATCH] Fix broken test, this wasn't supposed to get committed. llvm-svn: 237291 --- lldb/test/functionalities/paths/TestPaths.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lldb/test/functionalities/paths/TestPaths.py b/lldb/test/functionalities/paths/TestPaths.py index abc13d83c455..bfb6e8aba72c 100644 --- a/lldb/test/functionalities/paths/TestPaths.py +++ b/lldb/test/functionalities/paths/TestPaths.py @@ -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()