OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:parse_machine
(Results
1 - 3
of
3
) sorted by null
/external/autotest/server/
base_utils_unittest.py
29
#
parse_machine
() test cases
31
'''test that
parse_machine
() is outputting the correct data'''
52
self.assertEquals(utils.
parse_machine
(machine), result)
56
'''Test that
parse_machine
() defaults can be overridden'''
57
self.assertEquals(utils.
parse_machine
('host', 'bob', 'foo', 1234),
62
'''test that bad data passed to
parse_machine
() will raise an exception'''
71
self.assertRaises(exception, utils.
parse_machine
, machine)
base_utils.py
233
def
parse_machine
(machine, user='root', password='', port=22):
function
/external/autotest/server/hosts/
factory.py
83
hostname, user, password, port = server_utils.
parse_machine
(hostname, user,
Completed in 183 milliseconds