aboutsummaryrefslogtreecommitdiff
path: root/tools/c-index-test/c-index-test.c
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-08-18 23:09:16 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-08-18 23:09:16 +0000
commitc8a618002ca57495bf70e055bcafe918859cf4ca (patch)
treec306c234f67906e35c35e0009ba2c22aaf566786 /tools/c-index-test/c-index-test.c
parent2e3741760f64257bfe3c2efb04ec850acc7bdfe1 (diff)
c-index-test: Change -test-load-source-repase to only use remapped files for the
reparse, to allow testing distinct inputs. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@111448 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/c-index-test/c-index-test.c')
-rw-r--r--tools/c-index-test/c-index-test.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/c-index-test/c-index-test.c b/tools/c-index-test/c-index-test.c
index 1b2f036fa4..c822a135c2 100644
--- a/tools/c-index-test/c-index-test.c
+++ b/tools/c-index-test/c-index-test.c
@@ -627,12 +627,12 @@ int perform_test_reparse_source(int argc, const char **argv, int trials,
return -1;
}
+ /* Load the initial translation unit -- we do this without honoring remapped
+ * files, so that we have a way to test results after changing the source. */
TU = clang_parseTranslationUnit(Idx, 0,
argv + num_unsaved_files,
argc - num_unsaved_files,
- unsaved_files,
- num_unsaved_files,
- getDefaultParsingOptions());
+ 0, 0, getDefaultParsingOptions());
if (!TU) {
fprintf(stderr, "Unable to load translation unit!\n");
free_remapped_files(unsaved_files, num_unsaved_files);
@@ -643,6 +643,7 @@ int perform_test_reparse_source(int argc, const char **argv, int trials,
for (trial = 0; trial < trials; ++trial) {
if (clang_reparseTranslationUnit(TU, num_unsaved_files, unsaved_files,
clang_defaultReparseOptions(TU))) {
+ fprintf(stderr, "Unable to reparse translation unit!\n");
clang_disposeTranslationUnit(TU);
free_remapped_files(unsaved_files, num_unsaved_files);
clang_disposeIndex(Idx);