mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-20 03:55:48 -04:00

This reverts r371497 (git commit 3d7e9ab7b9
)
Reorder `not` with `env` in these two tests so they pass:
Driver/rewrite-map-in-diagnostics.c
Index/crash-recovery-modules.m.
This will not be necessary after D66531 lands.
llvm-svn: 371552
12 lines
334 B
C
12 lines
334 B
C
// RUN: rm -rf "%t"
|
|
// RUN: mkdir -p "%t"
|
|
// RUN: env TMPDIR="%t" TEMP="%t" TMP="%t" RC_DEBUG_OPTION=1 \
|
|
// RUN: not %clang -fsyntax-only -frewrite-map-file %p/Inputs/rewrite.map %s 2>&1 \
|
|
// RUN: | FileCheck %s
|
|
|
|
#pragma clang __debug parser_crash
|
|
|
|
// CHECK: note: diagnostic msg: {{.*}}rewrite.map
|
|
|
|
// REQUIRES: crash-recovery
|