Searched refs:is_normal_compile (Results 1 – 2 of 2) sorted by relevance
/external/clang/utils/check_cfc/ |
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 …]
|
D | check_cfc.py | 214 def is_normal_compile(args): function 356 if not is_normal_compile(arguments_a) or output_file_orig is None:
|