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