Home | History | Annotate | Download | only in check_cfc

Lines Matching refs:get_input_file

139         self.assertIsNone(check_cfc.get_input_file(['clang']))
142 check_cfc.get_input_file(['clang', 'test.c']), 'test.c')
145 check_cfc.get_input_file(['clang', 'test.cpp']), 'test.cpp')
148 check_cfc.get_input_file(['clang', 'test.c', 'test2.cpp']))
150 check_cfc.get_input_file(['clang', 'test.c', 'test2.c']))
152 self.assertIsNone(check_cfc.get_input_file(['clang', 'test.i']))
153 self.assertIsNone(check_cfc.get_input_file(['clang', 'test.ii']))
156 check_cfc.get_input_file(['clang', '"test.c"']), '"test.c"')
158 check_cfc.get_input_file(['clang', "'test.c'"]), "'test.c'")
161 check_cfc.get_input_file(['clang', "\"'test.c'\""]), "\"'test.c'\"")