You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
403 B
14 lines
403 B
# client_trampoline
|
|
#
|
|
# This control file is used to install and re-exec the actual client test
|
|
# control file on the host.
|
|
#
|
|
# This control file relies on a trampoline_testname global variable that
|
|
# is inserted at the top of this file by server_job.run().
|
|
|
|
def _client_trampoline():
|
|
path = job.stage_control_file(trampoline_testname)
|
|
execfile(path, globals(), globals())
|
|
|
|
_client_trampoline()
|