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_CTS_Instant.py' 12target_script_path = os.path.abspath(os.path.join(os.path.dirname(__file__), 13 '..', '..', 'cros', 'tradefed', target_script_name)) 14os.execv(target_script_path, sys.argv) 15