[lldb][NFC] Give class template pack test files unique class names
This commit is contained in:
parent
a8034fc1ad
commit
291cc1bbea
|
|
@ -3,7 +3,7 @@ from lldbsuite.test.decorators import *
|
|||
from lldbsuite.test.lldbtest import *
|
||||
from lldbsuite.test import lldbutil
|
||||
|
||||
class TestCase(TestBase):
|
||||
class TestCaseClassTemplateNonTypeParameterPack(TestBase):
|
||||
|
||||
mydir = TestBase.compute_mydir(__file__)
|
||||
|
||||
|
|
@ -73,4 +73,4 @@ class TestCase(TestBase):
|
|||
self.expect_expr("emptyNonTypePackAfterNonTypeParam", result_type="NonTypePackAfterNonTypeParam<1>",
|
||||
result_children=[ValueCheck(name="j", type="int")])
|
||||
self.expect_expr("oneElemNonTypePackAfterNonTypeParam", result_type="NonTypePackAfterNonTypeParam<1, 2>",
|
||||
result_children=[ValueCheck(name="j", type="int")])
|
||||
result_children=[ValueCheck(name="j", type="int")])
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ from lldbsuite.test.decorators import *
|
|||
from lldbsuite.test.lldbtest import *
|
||||
from lldbsuite.test import lldbutil
|
||||
|
||||
class TestCase(TestBase):
|
||||
class TestCaseClassTemplateTypeParameterPack(TestBase):
|
||||
|
||||
mydir = TestBase.compute_mydir(__file__)
|
||||
|
||||
|
|
@ -73,4 +73,4 @@ class TestCase(TestBase):
|
|||
self.expect_expr("emptyTypePackAfterNonTypeParam", result_type="TypePackAfterNonTypeParam<1>",
|
||||
result_children=[ValueCheck(name="j", type="int")])
|
||||
self.expect_expr("oneElemTypePackAfterNonTypeParam", result_type="TypePackAfterNonTypeParam<1, int>",
|
||||
result_children=[ValueCheck(name="j", type="int")])
|
||||
result_children=[ValueCheck(name="j", type="int")])
|
||||
|
|
|
|||
Loading…
Reference in New Issue