Searched refs:split_command (Results 1 – 4 of 4) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/clang/tools/scan-build-py/tests/unit/ |
H A D | test_compilation.py | 38 result = sut.split_command([cmd, '-c', 'src.c']) 54 self.assertIsNotNone(sut.split_command(['clang', 'source.c'])) 55 self.assertIsNotNone(sut.split_command(['clang', '-c', 'source.c'])) 56 self.assertIsNotNone(sut.split_command(['clang', '-c', 'source.c', 59 self.assertIsNone(sut.split_command(['clang', '-E', 'source.c'])) 60 self.assertIsNone(sut.split_command(['clang', '-c', '-E', 'source.c'])) 61 self.assertIsNone(sut.split_command(['clang', '-c', '-M', 'source.c'])) 63 sut.split_command(['clang', '-c', '-MM', 'source.c'])) 67 self.assertEqual(expected, sut.split_command(cmd).files) 80 sut.split_command(['cc', 'this.o', 'that.o', '-o', 'a.out'])) [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/tools/scan-build-py/libscanbuild/ |
H A D | intercept.py | 34 from libscanbuild.compilation import split_command 213 compilation = split_command(exec_trace['command'])
|
H A D | compilation.py | 59 def split_command(command): function
|
H A D | analyze.py | 34 from libscanbuild.compilation import split_command, classify_source, \ 312 compilation = split_command(execution.cmd)
|