blob: 7793a891df0e738df6a70d98265a31c1b3e031e1 [file] [log] [blame]
#!/usr/bin/env python3
# Lint as: python2, python3
# Copyright 2019 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# This is a trampoline script to invoke the actual generator script.
import os
import sys
target_script_name = 'generate_controlfiles_VTS_R.py'
target_script_path = os.path.abspath(
os.path.join(os.path.dirname(__file__), '..', '..', 'cros', 'tradefed',
target_script_name))
sys.path.append('../../../../autotest/files/server/cros/tradefed/')
os.execv(target_script_path, sys.argv)