blob: 7d1ed2f5c8e6b4b2ee8b8634bc75658f1241e961 [file] [log] [blame]
#!/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', '-alsologtostderr'] + sys.argv[1:])