mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-04-03 05:32:24 +00:00

This patch replaces use of the deprecated `FileEntry::getName()` with `FileEntryRef::getName()`. This means the code now uses the path that was used to register file entry in `SourceManager` instead of the absolute path that happened to be used in the last call to `FileManager::getFile()` some place else. This caused some test failures due to the fact that some paths can be relative and thus rely on the VFS CWD. The CWD can change for each TU, so when we run `clang-tidy` on a compilation database and try to perform all the replacements at the end, relative paths won't resolve the same. This patch takes care to reinstate the correct CWD and make the path reported by `FileEntryRef` absolute before passing it to `llvm::writeToOutput()`.
33 lines
2.2 KiB
C++
33 lines
2.2 KiB
C++
// RUN: mkdir -p %T/compilation-database-test/include
|
|
// RUN: mkdir -p %T/compilation-database-test/a
|
|
// RUN: mkdir -p %T/compilation-database-test/b
|
|
// RUN: echo 'int *AA = 0;' > %T/compilation-database-test/a/a.cpp
|
|
// RUN: echo 'int *AB = 0;' > %T/compilation-database-test/a/b.cpp
|
|
// RUN: echo 'int *BB = 0;' > %T/compilation-database-test/b/b.cpp
|
|
// RUN: echo 'int *BC = 0;' > %T/compilation-database-test/b/c.cpp
|
|
// RUN: echo 'int *BD = 0;' > %T/compilation-database-test/b/d.cpp
|
|
// RUN: echo 'int *HP = 0;' > %T/compilation-database-test/include/header.h
|
|
// RUN: echo '#include "header.h"' > %T/compilation-database-test/include.cpp
|
|
// RUN: sed 's|test_dir|%/T/compilation-database-test|g' %S/Inputs/compilation-database/template.json > %T/compile_commands.json
|
|
|
|
// Regression test: shouldn't crash.
|
|
// RUN: not clang-tidy --checks=-*,modernize-use-nullptr -p %T %T/compilation-database-test/b/not-exist -header-filter=.* 2>&1 | FileCheck %s -check-prefix=CHECK-NOT-EXIST
|
|
// CHECK-NOT-EXIST: Error while processing {{.*[/\\]}}not-exist.
|
|
// CHECK-NOT-EXIST: unable to handle compilation
|
|
// CHECK-NOT-EXIST: Found compiler error
|
|
|
|
// RUN: clang-tidy --checks=-*,modernize-use-nullptr -p %T %T/compilation-database-test/a/a.cpp %T/compilation-database-test/a/b.cpp %T/compilation-database-test/b/b.cpp %T/compilation-database-test/b/c.cpp %T/compilation-database-test/b/d.cpp %T/compilation-database-test/include.cpp -header-filter=.* -fix
|
|
// RUN: FileCheck -input-file=%T/compilation-database-test/a/a.cpp %s -check-prefix=CHECK-FIX1
|
|
// RUN: FileCheck -input-file=%T/compilation-database-test/a/b.cpp %s -check-prefix=CHECK-FIX2
|
|
// RUN: FileCheck -input-file=%T/compilation-database-test/b/b.cpp %s -check-prefix=CHECK-FIX3
|
|
// RUN: FileCheck -input-file=%T/compilation-database-test/b/c.cpp %s -check-prefix=CHECK-FIX4
|
|
// RUN: FileCheck -input-file=%T/compilation-database-test/b/d.cpp %s -check-prefix=CHECK-FIX5
|
|
// RUN: FileCheck -input-file=%T/compilation-database-test/include/header.h %s -check-prefix=CHECK-FIX6
|
|
|
|
// CHECK-FIX1: int *AA = nullptr;
|
|
// CHECK-FIX2: int *AB = nullptr;
|
|
// CHECK-FIX3: int *BB = nullptr;
|
|
// CHECK-FIX4: int *BC = nullptr;
|
|
// CHECK-FIX5: int *BD = nullptr;
|
|
// CHECK-FIX6: int *HP = nullptr;
|