forked from OSchip/llvm-project
Don't depend on the "run" alias doing shell expanding.
Instead dial it up explicitly. This test started failing recently and I'm not sure why. It also doesn't make sense to me the replacing "run" with "process launch -X 1 --" should make any difference - run is an alias for the latter. But it does pass with the change, and unless we are testing for the exact run alias, it's better to ask for what we want explicitly.
This commit is contained in:
parent
76de2f4a9c
commit
80b2da42d2
|
@ -6,8 +6,8 @@
|
|||
# XFAIL: system-openbsd
|
||||
|
||||
# RUN: %clang_host %S/Inputs/simple.c -g -o %t.out
|
||||
# RUN: SHELL=bogus not %lldb %t.out -b -o 'run' 2>&1 | FileCheck %s --check-prefix ERROR
|
||||
# RUN: env -i %lldb %t.out -b -o 'run' 2>&1 | FileCheck %s
|
||||
# RUN: SHELL=bogus not %lldb %t.out -b -o 'process launch -X 1 --' 2>&1 | FileCheck %s --check-prefix ERROR
|
||||
# RUN: env -i %lldb %t.out -b -o 'process launch -X 1 --' 2>&1 | FileCheck %s
|
||||
|
||||
# ERROR: error: shell expansion failed
|
||||
# CHECK-NOT: error: shell expansion failed
|
||||
|
|
Loading…
Reference in New Issue