diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-10-11 16:52:23 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-10-11 16:52:23 +0000 |
commit | b10daedb8fc4c6f70a66dbc1a6eea01684bb4e77 (patch) | |
tree | fe88a90f6d496190f6b5e22199e8481a6324a748 /test | |
parent | 334d47e92e9f241576fdeb7477b69a03136ba854 (diff) |
Eliminate clang_setUseExternalASTGeneration() from libclang. Between
improvements to the compiler and the introduction of crash recovery,
it no longer makes sense to allow this mode. Moreover, this eliminates
one use of the "clang" executable from within libclang; we'd like them
all to go away.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@116207 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/Index/remap-cursor-at.c | 1 | ||||
-rw-r--r-- | test/Index/remap-load.c | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/test/Index/remap-cursor-at.c b/test/Index/remap-cursor-at.c index fb97d5d62b..c2bed0e69c 100644 --- a/test/Index/remap-cursor-at.c +++ b/test/Index/remap-cursor-at.c @@ -1,5 +1,4 @@ // RUN: c-index-test -cursor-at=%s:1:15 -cursor-at=%s:2:21 -remap-file="%s;%S/Inputs/remap-load-to.c" %s | FileCheck %s -// RUN: env CINDEXTEST_USE_EXTERNAL_AST_GENERATION=1 c-index-test -cursor-at=%s:1:15 -cursor-at=%s:2:21 -remap-file="%s;%S/Inputs/remap-load-to.c" %s | FileCheck %s // CHECK: ParmDecl=parm1:1:13 (Definition) // CHECK: DeclRefExpr=parm2:1:26 diff --git a/test/Index/remap-load.c b/test/Index/remap-load.c index 2e57fe4cd9..d54c3a1076 100644 --- a/test/Index/remap-load.c +++ b/test/Index/remap-load.c @@ -1,6 +1,4 @@ // RUN: c-index-test -test-load-source all -remap-file="%s;%S/Inputs/remap-load-to.c" %s | FileCheck -check-prefix=CHECK %s -// RUN: env CINDEXTEST_USE_EXTERNAL_AST_GENERATION=1 c-index-test -test-load-source all -remap-file="%s;%S/Inputs/remap-load-to.c" %s | FileCheck -check-prefix=CHECK %s -// XFAIL: win32 // CHECK: remap-load.c:1:5: FunctionDecl=foo:1:5 (Definition) Extent=[1:5 - 3:2] // CHECK: remap-load.c:1:13: ParmDecl=parm1:1:13 (Definition) Extent=[1:9 - 1:18] |