mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-25 17:31:02 +00:00
43356f56bd
Makes the name of this directory consistent with the names of the other directories in clang-tools-extra. Similar to r356254. No intended behavior change. Differential Revision: https://reviews.llvm.org/D59750 llvm-svn: 356897
12 lines
322 B
C++
12 lines
322 B
C++
// RUN: mkdir -p %T/foo/bar
|
|
// RUN: cp %p/Inputs/fake_yaml_db.yaml %T/find_all_symbols_db.yaml
|
|
// RUN: cd %T/foo
|
|
// RUN: sed -e 's#//.*$##' %s > bar/test.cpp
|
|
// RUN: clang-include-fixer -db=yaml bar/test.cpp --
|
|
// RUN: FileCheck %s -input-file=bar/test.cpp
|
|
|
|
// CHECK: #include "foo.h"
|
|
// CHECK: b::a::foo f;
|
|
|
|
b::a::foo f;
|