diff options
| author | Greg Clayton <gclayton@apple.com> | 2014-01-23 22:53:05 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2014-01-23 22:53:05 +0000 |
| commit | bc8911807cfad2844fe43be13530fc7dd76f3d5c (patch) | |
| tree | af0808385b04fe2423cb64d702a16cbae0051b1c | |
| parent | e308c0cd0d305801f447114e509c8a75bebbd299 (diff) | |
| download | bcm5719-llvm-bc8911807cfad2844fe43be13530fc7dd76f3d5c.tar.gz bcm5719-llvm-bc8911807cfad2844fe43be13530fc7dd76f3d5c.zip | |
Fixed a test suite exception that was cause by bad python (sys.unlink instead of os.unlink).
llvm-svn: 199952
| -rw-r--r-- | lldb/test/lang/objc/foundation/TestObjCMethods.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/lang/objc/foundation/TestObjCMethods.py b/lldb/test/lang/objc/foundation/TestObjCMethods.py index 5dfc214d88b..f97b1d8506f 100644 --- a/lldb/test/lang/objc/foundation/TestObjCMethods.py +++ b/lldb/test/lang/objc/foundation/TestObjCMethods.py @@ -143,7 +143,7 @@ class FoundationTestCase(TestBase): self.runCmd("log disable dwarf lookups") def cleanup(): - sys.unlink (logfile) + os.unlink (logfile) self.addTearDownHook(cleanup) |

