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"""Script for use in test_env unittests.""" 6 7import os 8import sys 9 10import test_env 11 12HERE = os.path.dirname(os.path.abspath(__file__)) 13TEST_SCRIPT = os.path.join(HERE, 'test_env_test_script.py') 14 15if __name__ == '__main__': 16 test_env.run_command([sys.executable, TEST_SCRIPT]) 17