| /llvm-project-15.0.7/llvm/utils/lit/tests/Inputs/shtest-shell/ |
| H A D | diff-r.txt | 12 # RUN: mkdir -p %t/dir1/subdir %t/dir2/subdir 13 # RUN: echo "12345" > %t/dir1/subdir/f01 14 # RUN: echo "12345" > %t/dir2/subdir/f01 15 # RUN: echo -e "xxx\nzzz\nyyy" > %t/dir1/subdir/f02 16 # RUN: echo -e "xxx\nzzz\nyyy" > %t/dir2/subdir/f02
|
| H A D | diff-r-error-1.txt | 6 # RUN: mkdir -p %t/dir1/subdir %t/dir2/subdir 7 # RUN: echo "12345" > %t/dir1/subdir/f01 8 # RUN: echo "00000" > %t/dir2/subdir/f01
|
| /llvm-project-15.0.7/lld/test/MachO/ |
| H A D | link-search-at-loader-path.s | 4 # RUN: mkdir %t/subdir 10 # RUN: %lld -dylib -install_name @loader_path/libfoo.dylib %t/foo.o -o %t/subdir/libfoo.dylib 13 # RUN: %lld -dylib -reexport_library %t/subdir/libfoo.dylib -install_name /tmp/libbar.dylib %t/bar.… 15 # RUN: %lld -lSystem %t/main.o %t/subdir/libbar.dylib -o %t/test 16 # RUN: %lld -dylib -lSystem %t/main.o %t/subdir/libbar.dylib -o %t/libtest.dylib
|
| H A D | link-search-at-executable-path.s | 4 # RUN: mkdir %t/subdir 10 # RUN: %lld -dylib -install_name @executable_path/libfoo.dylib %t/foo.o -o %t/subdir/libfoo.dylib 12 # RUN: %lld -dylib -reexport_library %t/subdir/libfoo.dylib %t/bar.o -o %t/libbar.dylib 16 # RUN: %lld -lSystem %t/main.o %t/libbar.dylib -o %t/subdir/test
|
| H A D | link-search-at-rpath.s | 4 # RUN: mkdir %t/subdir 11 # RUN: %lld -dylib -install_name @rpath/libfoo.dylib %t/foo.o -o %t/subdir/libfoo.dylib 13 # RUN: %lld -dylib -reexport_library %t/subdir/libfoo.dylib \ 15 # RUN: -rpath @loader_path/../subdir \
|
| /llvm-project-15.0.7/clang/docs/tools/ |
| H A D | generate_formatted_state.py | 92 for subdir in subdirs: 93 if any(sd == subdir for sd in skipped_dirs): 94 subdirs.remove(subdir) 96 act_sub_dir = os.path.join(root, subdir) 106 subdirs.remove(subdir)
|
| /llvm-project-15.0.7/llvm/unittests/Support/ |
| H A D | FileCollectorTest.cpp | 131 TempDir subdir(file_root.path("subdir")); in TEST() local 143 EXPECT_FALSE(FileCollector.hasSeen(subdir.path())); in TEST() 145 FileCollector.addFile(subdir.path()); in TEST() 146 EXPECT_TRUE(FileCollector.hasSeen(subdir.path())); in TEST() 154 llvm::sys::path::relative_path(subdir.path())); in TEST() 162 TempDir subdir(file_root.path("subdir")); in TEST() local 183 VFS->status(subdir.path()); in TEST() 184 EXPECT_TRUE(Collector->hasSeen(subdir.path())); in TEST()
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-profdata/ |
| H A D | input-dir.test | 7 RUN: mkdir -p %t.dir2/subdir 13 RUN: echo ' ' > %t.dir2/subdir/baz 22 CHECK-DAG: 2,{{.*}}.dir2{{[/\\]}}subdir{{[/\\]}}baz
|
| /llvm-project-15.0.7/libcxx/utils/libcxx/test/ |
| H A D | googlebenchmark.py | 75 for subdir in self.test_sub_dirs: 76 dir_path = os.path.join(source_path, subdir) 82 execpath = os.path.join(source_path, subdir, fn) 85 testPath = path_in_suite + (subdir, fn, testname)
|
| /llvm-project-15.0.7/clang/test/Modules/Inputs/subdir/ |
| H A D | module.map | 1 module subdir { 2 header "subdir.h"
|
| /llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/tools/ |
| H A D | TestToolBase.py | 114 for subdir in subdirs: 115 for f in os.listdir(subdir): 118 file_path = os.path.normcase(os.path.join(subdir, f)) 128 self._run_test(self._get_test_name(subdir))
|
| /llvm-project-15.0.7/lldb/scripts/ |
| H A D | install_custom_python.py | 49 def copy_subdirectory(dest_dir, source_dir, subdir): argument 50 dest_dir = os.path.join(dest_dir, subdir) 51 source_dir = os.path.join(source_dir, subdir)
|
| /llvm-project-15.0.7/llvm/utils/lit/lit/formats/ |
| H A D | googletest.py | 49 for subdir in self.test_sub_dirs: 50 dir_path = os.path.join(source_path, subdir) 56 execpath = os.path.join(source_path, subdir, fn) 69 testPath = path_in_suite + (subdir, fn, str(idx), 91 subdir, fn, 'failed_to_discover_tests_from_gtest')
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-objdump/X86/ |
| H A D | disassemble-archive-with-source.ll | 7 ; RUN: rm -rf %t && mkdir -p %t/subdir && cd %t 8 ; RUN: echo -e "int foo(int a)\n\n{ return a+1; }" > subdir/a.c 9 ; RUN: sed -e "s,DIRNAME,%/t/subdir," %s | llc --filetype=obj -mtriple=x86_64-pc-linux -o a.o
|
| /llvm-project-15.0.7/llvm/test/tools/split-file/ |
| H A D | basic.test | 7 //--- subdir/cc 15 # RUN: diff %S/Inputs/basic-cc.txt %t/subdir/cc
|
| /llvm-project-15.0.7/lldb/test/API/commands/command/source/ |
| H A D | commands2.txt | 1 command source -C subdir/subcmds.txt
|
| /llvm-project-15.0.7/llvm/utils/lit/tests/Inputs/reorder/ |
| H A D | .lit_test_times.txt | 2 3.0 subdir/ccc.txt
|
| /llvm-project-15.0.7/clang/test/Modules/Inputs/include_next/x/ |
| H A D | module.modulemap | 2 module xb { header "subdir/b.h" export * }
|
| /llvm-project-15.0.7/llvm/utils/lit/tests/Inputs/googletest-discovery-failed/ |
| H A D | lit.cfg | 3 config.test_format = lit.formats.GoogleTest('subdir', 'Test')
|
| /llvm-project-15.0.7/polly/lib/External/ppcg/ |
| H A D | opencl_test.sh.in | 30 subdir=$1
|
| /llvm-project-15.0.7/lldb/cmake/modules/ |
| H A D | AddLLDB.cmake | 220 set(subdir LLDB.framework/Versions/${LLDB_FRAMEWORK_VERSION}/Resources) variable 223 INSTALL_PREFIX ${LLDB_FRAMEWORK_INSTALL_DIR}/${subdir} 226 lldb_add_to_buildtree_lldb_framework(${name} ${subdir}) 236 function(lldb_add_to_buildtree_lldb_framework name subdir) 239 set(copy_dest "${LLDB_FRAMEWORK_ABSOLUTE_BUILD_DIR}/${subdir}/$<TARGET_FILE_NAME:${name}>")
|
| /llvm-project-15.0.7/clang-tools-extra/test/clang-apply-replacements/Inputs/relative-paths/ |
| H A D | file1.yaml | 4 - BuildDirectory: $(path)/subdir/
|
| /llvm-project-15.0.7/llvm/utils/ |
| H A D | collect_and_build_with_pgo.py | 152 subdir = '../compiler-rt' 154 subdir = '../clang' 158 return os.path.isdir(os.path.join(self.llvm_dir, subdir))
|
| /llvm-project-15.0.7/llvm/utils/lit/tests/Inputs/discovery/ |
| H A D | lit.cfg | 13 # Check that arbitrary config values are copied (tested by subdir/lit.local.cfg).
|
| /llvm-project-15.0.7/clang/test/Modules/ |
| H A D | on-demand-build.m | 22 @import subdir;
|