The input source file seems to be triggering an error in the Visual Studio headers. > xstddef:338:2: error: ''auto' return without trailing return type; > deduced return types are a C++14 extension I tried converting the test to use the %build stuff Zachary added, but that seems to be missing some Darwin support. Disabling the test on Windows in the meantime. llvm-svn: 360624
10 lines
302 B
Plaintext
10 lines
302 B
Plaintext
UNSUPPORTED: system-windows
|
|
|
|
The double quotes around "BAR" ensure we don't match the command.
|
|
|
|
RUN: %clangxx -std=c++11 %p/Inputs/env.cpp -o %t
|
|
RUN: %lldb %t -o 'process launch --environment FOO="BAR"' | FileCheck %s
|
|
RUN: %lldb %t -o 'env FOO="BAR"' -o 'process launch' | FileCheck %s
|
|
|
|
CHECK: FOO=BAR
|