[go: nahoru, domu]

blob: 1d94387633d5d7c42a4dd1d8f1e1d7bff4234e7a [file] [log] [blame]
Caleb Rouleau6844df152019-09-11 01:11:591#!/usr/bin/env python
2# Copyright (c) 2019 The Chromium 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"""Script for use in test_env unittests."""
7
Chris McDonaldc3e0f26b2020-06-04 02:15:148import os
Matt Kotsenasc8c054c2020-06-09 22:15:419import sys
Chris McDonaldc3e0f26b2020-06-04 02:15:1410
Caleb Rouleau6844df152019-09-11 01:11:5911import test_env
12
Chris McDonaldc3e0f26b2020-06-04 02:15:1413HERE = os.path.dirname(os.path.abspath(__file__))
14TEST_SCRIPT = os.path.join(HERE, 'test_env_test_script.py')
Caleb Rouleau6844df152019-09-11 01:11:5915
16if __name__ == '__main__':
Matt Kotsenasc8c054c2020-06-09 22:15:4117 test_env.run_command([sys.executable, TEST_SCRIPT])