Fixed typos from cut-and-paste errors.

llvm-svn: 109539
This commit is contained in:
Johnny Chen 2010-07-27 20:59:06 +00:00
parent 84a74779a1
commit 49583c207f
6 changed files with 8 additions and 8 deletions

View File

@ -7,7 +7,7 @@ import unittest
import lldb
import lldbtest
class TestClassTypes(lldbtest.TestBase):
class TestDeadStrip(lldbtest.TestBase):
mydir = "dead-strip"

View File

@ -5,7 +5,7 @@ import unittest
import lldb
import lldbtest
class TestClassTypes(lldbtest.TestBase):
class TestFunctionTypes(lldbtest.TestBase):
mydir = "function_types"

View File

@ -5,7 +5,7 @@ import unittest
import lldb
import lldbtest
class TestClassTypes(lldbtest.TestBase):
class TestGlobalVariables(lldbtest.TestBase):
mydir = "global_variables"

View File

@ -7,11 +7,11 @@ import unittest
import lldb
import lldbtest
class TestClassTypes(lldbtest.TestBase):
class TestLoadUnload(lldbtest.TestBase):
mydir = "load_unload"
def test_dead_strip(self):
def test_load_unload(self):
"""Test breakpoint by name works correctly with dlopen'ing."""
res = self.res
exe = os.path.join(os.getcwd(), "a.out")

View File

@ -8,7 +8,7 @@ import unittest
import lldb
import lldbtest
class TestClassTypes(lldbtest.TestBase):
class TestOrder(lldbtest.TestBase):
mydir = "order"

View File

@ -5,11 +5,11 @@ import unittest
import lldb
import lldbtest
class TestClassTypes(lldbtest.TestBase):
class TestSetValues(lldbtest.TestBase):
mydir = "set_values"
def test_class_types(self):
def test_set_values(self):
"""Test settings and readings of program variables."""
res = self.res
exe = os.path.join(os.getcwd(), "a.out")