#!/usr/bin/env python | |
# Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
# Use of this source code is governed by a BSD-style license that can be | |
# found in the LICENSE file. | |
"""Runs all unit tests under this base directory.""" | |
import subprocess | |
import sys | |
# TODO(borenet): This file has been re-implemented in Go. Remove it and have | |
# the infrastructure just call run_unittests.go directly. | |
subprocess.check_call( | |
['go', 'run', 'run_unittests.go'] + sys.argv[1:]) |