You've already forked llvm-project
mirror of
https://github.com/encounter/llvm-project.git
synced 2026-03-30 11:27:19 -07:00
536612df4b
This allows us to skip the reproducer tests themselves as a whole as well as individual tests with the UNSUPPORTED keyword.
11 lines
331 B
Plaintext
11 lines
331 B
Plaintext
UNSUPPORTED: system-windows
|
|
UNSUPPORTED: lldb-repro
|
|
|
|
The double quotes around "BAR" ensure we don't match the command.
|
|
|
|
RUN: %clangxx_host -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
|