blob: 36d01273f777e8e2f0a2f1e803226f3ba8e63c26 [file] [log] [blame]
#!/usr/bin/env python3
# Copyright 2018 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Wrapper to run all tests with default settings."""
import os
import sys
sys.argv[0] = os.path.join(os.path.dirname(os.path.abspath(__file__)),
'scripts', 'run_tests')
os.execv(sys.argv[0], sys.argv)