brintos

brintos / llvm-project-archived public Read only

0
0
Text · 496 B · 302a8bb Raw
11 lines · plain
1// RUN: env HOME=%t.home %clang -fmodules -### %s 2>&1 | FileCheck %s -check-prefix=CHECK-DEFAULT2// CHECK-DEFAULT: -fmodules-cache-path={{.*}}clang{{[/\\]+}}ModuleCache3 4// RUN: env CLANG_MODULE_CACHE_PATH=/dev/null \5// RUN:   %clang -fmodules -### %s 2>&1 | FileCheck %s -check-prefix=OVERRIDE6// OVERRIDE: -fmodules-cache-path=/dev/null7 8// RUN: env CLANG_MODULE_CACHE_PATH= \9// RUN:   %clang -fmodules -### %s 2>&1 | FileCheck %s -check-prefix=DISABLE10// DISABLE-NOT: -fmodules-cache-path=11