blob: 23f55cffbaa5537093ce4af2f1f829f8c0d0944d [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
9
Caleb Rouleau6844df152019-09-11 01:11:5910import test_env
11
Chris McDonaldc3e0f26b2020-06-04 02:15:1412HERE = os.path.dirname(os.path.abspath(__file__))
13TEST_SCRIPT = os.path.join(HERE, 'test_env_test_script.py')
Caleb Rouleau6844df152019-09-11 01:11:5914
15if __name__ == '__main__':
Chris McDonaldc3e0f26b2020-06-04 02:15:1416 test_env.run_command([TEST_SCRIPT])