Searched refs:is_normal_compile (Results 1 – 2 of 2) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/clang/utils/check_cfc/ |
H A D | test_check_cfc.py | 82 self.assertTrue(check_cfc.is_normal_compile( 85 check_cfc.is_normal_compile(['clang', '-c', 'test.cpp'])) 88 check_cfc.is_normal_compile(['clang', '-c', 'test.cpp', '-flto'])) 90 check_cfc.is_normal_compile(['clang', '-c', 'test.cpp', '-emit-llvm'])) 93 check_cfc.is_normal_compile(['clang', '-E', 'test.cpp', '-o', 'test.ii'])) 95 check_cfc.is_normal_compile(['clang', '-S', 'test.cpp', '-o', 'test.s'])) 98 check_cfc.is_normal_compile(['clang', '-c', 'test.s', '-o', 'test.o'])) 100 check_cfc.is_normal_compile(['clang', '-c', 'test.ii', '-o', 'test.o'])) 103 check_cfc.is_normal_compile(['clang', '-c', 'test.cpp', '--version'])) 105 check_cfc.is_normal_compile(['clang', '-c', 'test.cpp', '--help'])) [all …]
|
H A D | check_cfc.py | 217 def is_normal_compile(args): function 359 if not is_normal_compile(arguments_a) or output_file_orig is None:
|