From 3c0d1060054121c2c7dafd18f717b1d9a905b572 Mon Sep 17 00:00:00 2001 From: Caroline Tice Date: Wed, 10 Sep 2025 15:20:59 -0700 Subject: [PATCH] [compiler-rt] Fix sig-trap.test to work with lit internal shell. Update sig-trap.test to work with the lit internal shell, as part of our migration to make the internal shell the default for lit tests. --- compiler-rt/test/fuzzer/sig-trap.test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/test/fuzzer/sig-trap.test b/compiler-rt/test/fuzzer/sig-trap.test index 60208c486a87a..1672d1e0229c7 100644 --- a/compiler-rt/test/fuzzer/sig-trap.test +++ b/compiler-rt/test/fuzzer/sig-trap.test @@ -8,4 +8,4 @@ RUN: not %run %t 2>&1 | FileCheck %s CHECK-DAG: BINGO CHECK-DAG: ERROR: libFuzzer: deadly signal -RUN: trap "%run %t -handle_trap=0" TRAP +RUN: bash -c "trap '%run %t -handle_trap=0' TRAP"