From ee45567120cd2e4134921c3343cd1168062f2b5e Mon Sep 17 00:00:00 2001 From: Chelsea Cassanova Date: Fri, 18 Jul 2025 17:40:49 -0500 Subject: [PATCH] [lldb][scripts] Fix framework script unifdef test Fixes a test that's failing on LLDB GreenDragon due to a mistake in the arguments used when calling the script. --- lldb/test/Shell/Scripts/TestFrameworkFixUnifdef.test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/test/Shell/Scripts/TestFrameworkFixUnifdef.test b/lldb/test/Shell/Scripts/TestFrameworkFixUnifdef.test index a7e82d2f3640c..ba18b4b41d3a0 100644 --- a/lldb/test/Shell/Scripts/TestFrameworkFixUnifdef.test +++ b/lldb/test/Shell/Scripts/TestFrameworkFixUnifdef.test @@ -1,7 +1,7 @@ # REQUIRES: system-darwin # Create a temp dir for output and run the framework fix script on the truncated version of SBAddress.h in the inputs dir. RUN: mkdir -p %t/Outputs -RUN: %python %p/../../../scripts/framework-header-fix.py -f lldb_main -i %p/Inputs/Main/SBAddress.h -o %t/Outputs/SBAddress.h -p /usr/bin/unifdef USWIG +RUN: %python %p/../../../scripts/framework-header-fix.py -f lldb_main -i %p/Inputs/Main/SBAddress.h -o %t/Outputs/SBAddress.h -p /usr/bin/unifdef --unifdef_guards USWIG # Check the output RUN: cat %t/Outputs/SBAddress.h | FileCheck %s