[Lldb-commits] [lldb] 428775d - [lldb] Remove TestShell.test

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Thu Apr 14 12:11:01 PDT 2022


Author: Jonas Devlieghere
Date: 2022-04-14T12:10:54-07:00
New Revision: 428775d5186fb075e76563c5ebab8607c3620a13

URL: https://github.com/llvm/llvm-project/commit/428775d5186fb075e76563c5ebab8607c3620a13
DIFF: https://github.com/llvm/llvm-project/commit/428775d5186fb075e76563c5ebab8607c3620a13.diff

LOG: [lldb] Remove TestShell.test

Remove TestShell.test because it's failing on the bot with "this is a
non-interactive debug session, cannot get permission to debug
processes." The only thing that's special about this test is the shell
we're launching with. I need to do a bit of digging to understand why
that's causing this error.

rdar://91766931

Added: 
    

Modified: 
    

Removed: 
    lldb/test/Shell/Process/TestShell.test


################################################################################
diff  --git a/lldb/test/Shell/Process/TestShell.test b/lldb/test/Shell/Process/TestShell.test
deleted file mode 100644
index b08d8611d41f5..0000000000000
--- a/lldb/test/Shell/Process/TestShell.test
+++ /dev/null
@@ -1,8 +0,0 @@
-REQUIRES: shell, system-darwin
-RUN: %clang_host %p/Inputs/echo.c -o %t.out
-
-RUN: not %lldb %t.out -b -o 'process launch --shell=tcsh -- $NO_SUCH_SHELL_VARIABLE' 2>&1 | FileCheck --check-prefix=FAILURE %s
-RUN: %lldb %t.out -b -o 'process launch --shell=tcsh -- $HOME' 2>&1 | FileCheck --check-prefix=SUCCESS %s
-
-FAILURE: exited with status 1
-SUCCESS: exited with status = 0


        


More information about the lldb-commits mailing list