This revision was automatically updated to reflect the committed changes. Closed by commit rG8bd895cac0cd: [lldb/test] Use shorter test case names in TestStandardUnwind (authored by rupprecht).
Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D86752/new/ https://reviews.llvm.org/D86752 Files: lldb/test/API/functionalities/unwind/standard/TestStandardUnwind.py Index: lldb/test/API/functionalities/unwind/standard/TestStandardUnwind.py =================================================================== --- lldb/test/API/functionalities/unwind/standard/TestStandardUnwind.py +++ lldb/test/API/functionalities/unwind/standard/TestStandardUnwind.py @@ -164,7 +164,7 @@ self.skipTest("Inferior not supported") self.standard_unwind_tests() - test_name = "test_unwind_" + str(f) + test_name = "test_unwind_" + str(os.path.basename(f)) for c in ".=()/\\": test_name = test_name.replace(c, '_')
Index: lldb/test/API/functionalities/unwind/standard/TestStandardUnwind.py =================================================================== --- lldb/test/API/functionalities/unwind/standard/TestStandardUnwind.py +++ lldb/test/API/functionalities/unwind/standard/TestStandardUnwind.py @@ -164,7 +164,7 @@ self.skipTest("Inferior not supported") self.standard_unwind_tests() - test_name = "test_unwind_" + str(f) + test_name = "test_unwind_" + str(os.path.basename(f)) for c in ".=()/\\": test_name = test_name.replace(c, '_')
_______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits