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