You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
413 B
15 lines
413 B
// RUN: rm -rf "%t"
|
|
// RUN: mkdir -p "%t"
|
|
// RUN: not env TMPDIR="%t" TEMP="%t" TMP="%t" RC_DEBUG_OPTION=1 \
|
|
// RUN: %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
|
|
|
|
// FIXME: This doesn't fail on "env clang". Investigating.
|
|
// REQUIRES: shell
|