Home | History | Annotate | Download | only in unit

Lines Matching full:clang

18         test("clang")
19 test("clang this and that")
26 test(['clang'])
27 test(['clang', 'this', 'and', 'that'])
28 test(['clang', 'this and', 'that'])
29 test(['clang', "it's me", 'again'])
30 test(['clang', 'some "words" are', 'quoted'])
33 self.assertEqual(sut.encode(['clang', "it's me", 'again']),
34 'clang "it\'s me" again')
35 self.assertEqual(sut.encode(['clang', "it(s me", 'again)']),
36 'clang "it(s me" "again)"')
37 self.assertEqual(sut.encode(['clang', 'redirect > it']),
38 'clang "redirect > it"')
39 self.assertEqual(sut.encode(['clang', '-DKEY="VALUE"']),
40 'clang -DKEY=\\"VALUE\\"')
41 self.assertEqual(sut.encode(['clang', '-DKEY="value with spaces"']),
42 'clang -DKEY=\\"value with spaces\\"')