xref: /llvm-project/lldb/test/Shell/Process/TestEnvironment.test (revision 88591aa0ca7e4d99da353d49f91ea63e43fb55e0)
1UNSUPPORTED: system-windows
2
3The double quotes around "BAR" ensure we don't match the command.
4
5RUN: %clangxx_host -std=c++11 %p/Inputs/env.cpp -o %t
6RUN: %lldb %t -o 'process launch --environment FOO="BAR"' | FileCheck %s
7RUN: %lldb %t -o 'env FOO="BAR"' -o 'process launch' | FileCheck %s
8
9CHECK: FOO=BAR
10