Home | History | Annotate | Download | only in port

Lines Matching defs:linux

35 from webkitpy.layout_tests.port import linux
40 port_name = 'linux'
41 port_maker = linux.LinuxPort
52 self.assertTrue(port.baseline_path().endswith('linux-x86'))
53 self.assertTrue(port.baseline_search_path()[0].endswith('linux-x86'))
54 self.assertTrue(port.baseline_search_path()[1].endswith('linux'))
56 self.assertTrue(port.baseline_path().endswith('linux'))
57 self.assertTrue(port.baseline_search_path()[0].endswith('linux'))
60 self.assert_architecture(port_name='linux-x86',
62 self.assert_architecture(port_name='linux-x86_64',
72 self.assertRaises(AssertionError, linux.LinuxPort, MockSystemHost(), port_name='x86-linux')
88 self.assertRaises(AssertionError, linux.LinuxPort, host, '%s-foo' % self.port_name)
91 self.assertEqual('linux', self.make_port().operating_system())