Author: Raphael Isemann Date: 2020-12-02T19:19:35+01:00 New Revision: 291cc1bbea1f4a6cab829509e95b3efe40af908f
URL: https://github.com/llvm/llvm-project/commit/291cc1bbea1f4a6cab829509e95b3efe40af908f DIFF: https://github.com/llvm/llvm-project/commit/291cc1bbea1f4a6cab829509e95b3efe40af908f.diff LOG: [lldb][NFC] Give class template pack test files unique class names Added: Modified: lldb/test/API/lang/cpp/class-template-non-type-parameter-pack/TestClassTemplateNonTypeParameterPack.py lldb/test/API/lang/cpp/class-template-type-parameter-pack/TestClassTemplateTypeParameterPack.py Removed: ################################################################################ diff --git a/lldb/test/API/lang/cpp/class-template-non-type-parameter-pack/TestClassTemplateNonTypeParameterPack.py b/lldb/test/API/lang/cpp/class-template-non-type-parameter-pack/TestClassTemplateNonTypeParameterPack.py index d366d9d69222..6b4b96049cdb 100644 --- a/lldb/test/API/lang/cpp/class-template-non-type-parameter-pack/TestClassTemplateNonTypeParameterPack.py +++ b/lldb/test/API/lang/cpp/class-template-non-type-parameter-pack/TestClassTemplateNonTypeParameterPack.py @@ -3,7 +3,7 @@ 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 @@ def test(self): 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")]) \ No newline at end of file + result_children=[ValueCheck(name="j", type="int")]) diff --git a/lldb/test/API/lang/cpp/class-template-type-parameter-pack/TestClassTemplateTypeParameterPack.py b/lldb/test/API/lang/cpp/class-template-type-parameter-pack/TestClassTemplateTypeParameterPack.py index 48ea59d6e5eb..223ba5224274 100644 --- a/lldb/test/API/lang/cpp/class-template-type-parameter-pack/TestClassTemplateTypeParameterPack.py +++ b/lldb/test/API/lang/cpp/class-template-type-parameter-pack/TestClassTemplateTypeParameterPack.py @@ -3,7 +3,7 @@ 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 @@ def test(self): 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")]) \ No newline at end of file + result_children=[ValueCheck(name="j", type="int")]) _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits