1#!/usr/bin/env python2 2# Copyright 2019 The Chromium OS Authors. All rights reserved. 3# Use of this source code is governed by a BSD-style license that can be 4# found in the LICENSE file. 5 6# This is a trampoline script to invoke the actual generator script. 7 8import os 9import sys 10 11target_script_name = 'generate_controlfiles_VTS_R.py' 12target_script_path = os.path.abspath( 13 os.path.join(os.path.dirname(__file__), '..', '..', 'cros', 'tradefed', 14 target_script_name)) 15sys.path.append('../../../../autotest/files/server/cros/tradefed/') 16 17os.execv(target_script_path, sys.argv) 18