Home | History | Annotate | Download | only in mac

Lines Matching refs:ObjType

38   def ObjType(p, t_expected):
41 objtype = 'unknown'
43 objtype = 'mach-o'
45 objtype = 'llvm'
46 if objtype != t_expected:
47 print 'Expected %s, got %s' % (t_expected, objtype)
50 ObjType(ObjPath('cfile', 'lto'), 'llvm')
51 ObjType(ObjPath('ccfile', 'lto'), 'llvm')
52 ObjType(ObjPath('mfile', 'lto'), 'llvm')
53 ObjType(ObjPath('mmfile', 'lto'), 'llvm')
54 ObjType(ObjPath('asmfile', 'lto'), 'mach-o')
56 ObjType(ObjPath('cfile', 'lto_static'), 'llvm')
57 ObjType(ObjPath('ccfile', 'lto_static'), 'llvm')
58 ObjType(ObjPath('mfile', 'lto_static'), 'llvm')
59 ObjType(ObjPath('mmfile', 'lto_static'), 'llvm')
60 ObjType(ObjPath('asmfile', 'lto_static'), 'mach-o')