[go: nahoru, domu]

blob: dc8d82a158a8413a2cc20e788c643abd672b5a60 [file] [log] [blame]
Caleb Rouleau6844df152019-09-11 01:11:591#!/usr/bin/env python
Avi Drissmandfd880852022-09-15 20:11:092# Copyright 2019 The Chromium Authors
Caleb Rouleau6844df152019-09-11 01:11:593# 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])