[Lldb-commits] [lldb] [lldb][test] TestProcessSaveCoreMinidump: Rename duplicate test-case (PR #148600)

Michael Buch via lldb-commits lldb-commits at lists.llvm.org
Mon Jul 14 03:11:24 PDT 2025


https://github.com/Michael137 created https://github.com/llvm/llvm-project/pull/148600

Ran my python script from
https://github.com/llvm/llvm-project/pull/97043 over the repo again and there was 1 duplicate test-case that has been introduced since I last did this.

This patch renames that test.

>From 20c30edab3aaf5e75eb002eb32b9772ebd625286 Mon Sep 17 00:00:00 2001
From: Michael Buch <michaelbuch12 at gmail.com>
Date: Mon, 14 Jul 2025 11:08:56 +0100
Subject: [PATCH] [lldb][test] TestProcessSaveCoreMinidump: Rename duplicate
 test-case

Ran my python script from
https://github.com/llvm/llvm-project/pull/97043 over the repo again and
there was 1 duplicate test-case that has been introduced since I last
did this.

This patch renames that test.
---
 .../process_save_core_minidump/TestProcessSaveCoreMinidump.py   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lldb/test/API/functionalities/process_save_core_minidump/TestProcessSaveCoreMinidump.py b/lldb/test/API/functionalities/process_save_core_minidump/TestProcessSaveCoreMinidump.py
index c2152640c425c..467c23d8b4562 100644
--- a/lldb/test/API/functionalities/process_save_core_minidump/TestProcessSaveCoreMinidump.py
+++ b/lldb/test/API/functionalities/process_save_core_minidump/TestProcessSaveCoreMinidump.py
@@ -608,7 +608,7 @@ def minidump_deterministic_difference(self):
 
     @skipUnlessPlatform(["linux"])
     @skipUnlessArch("x86_64")
-    def minidump_saves_fs_base_region(self):
+    def minidump_saves_tls(self):
         self.build()
         exe = self.getBuildArtifact("a.out")
         try:



More information about the lldb-commits mailing list