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