blob: 9bb135653f6a8619d2fcd87320a817f94205dae4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/usr/bin/env python
# Copyright (c) 2013 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.
import glob
import sys
import unittest
if __name__ == '__main__':
testlist = glob.glob('*_test.py')
for testname in testlist:
unittest.main(verbosity=2, module=testname[:-3])
|