Home | History | Annotate | Download | only in control_segments
      1 # client_trampoline
      2 #
      3 # This control file is used to install and re-exec the actual client test
      4 # control file on the host.
      5 #
      6 # This control file relies on a trampoline_testname global variable that
      7 # is inserted at the top of this file by server_job.run().
      8 
      9 def _client_trampoline():
     10     path = job.stage_control_file(trampoline_testname)
     11     execfile(path, globals(), globals())
     12 
     13 _client_trampoline()
     14