1#!/usr/bin/env python 2# Copyright 2019 The Chromium Authors 3# Use of this source code is governed by a BSD-style license that can be 4# found in the LICENSE file. 5 6"""Script for use in test_env unittests.""" 7 8import os 9import sys 10 11import test_env 12 13HERE = os.path.dirname(os.path.abspath(__file__)) 14TEST_SCRIPT = os.path.join(HERE, 'test_env_test_script.py') 15 16if __name__ == '__main__': 17 test_env.run_command([sys.executable, TEST_SCRIPT]) 18