mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-04-13 11:51:17 +00:00

Unlike for any of the other shells, we were escaping $ when using tcsh. There's nothing special about $ in tcsh and this prevents you from expanding shell variables, one of the main reasons this functionality exists in the first place. Differential revision: https://reviews.llvm.org/D123690
9 lines
373 B
Plaintext
9 lines
373 B
Plaintext
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
|