blob: fa411039be6ca9c9b066205bc153064fa416b811 [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.
Caleb Rouleau6844df152019-09-11 01:11:595"""Script for use in test_env unittests."""
6
Chris McDonaldc3e0f26b2020-06-04 02:15:147import os
Matt Kotsenasc8c054c2020-06-09 22:15:418import sys
Chris McDonaldc3e0f26b2020-06-04 02:15:149
Brian Sheedyfe2702e2024-12-13 21:48:2010# //testing imports.
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])