blob: 9cd63c9567d7297e03717a18f339186b7b19bf48 [file] [log] [blame]
kjellander@webrtc.org58598d62013-01-25 10:10:53 +00001#!/usr/bin/env python
2#
3# Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
4#
5# Use of this source code is governed by a BSD-style license
6# that can be found in the LICENSE file in the root of the source
7# tree. An additional intellectual property rights grant can be found
8# in the file PATENTS. All contributing project authors may
9# be found in the AUTHORS file in the root of the source tree.
10
11
12"""Script to run tests with pre-configured command line arguments.
13
14NOTICE: This test is designed to be run from the build output folder! It is
15copied automatically during build.
16
17With this script, it's easier for anyone to enable/disable or extend a test that
18runs on the buildbots. It is also easier for developers to run the tests in the
19same way as they run on the bots.
20"""
21
22import optparse
23import os
24import subprocess
25import sys
26
kjellander@webrtc.org0fb937a2013-01-30 21:39:10 +000027_CURRENT_DIR = os.path.abspath(os.path.dirname(__file__))
28_HOME = os.environ.get('HOME', '')
29
kjellander@webrtc.org58598d62013-01-25 10:10:53 +000030_VIE_AUTO_TEST_CMD_LIST = [
31 'vie_auto_test',
32 '--automated',
33 '--gtest_filter=-ViERtpFuzzTest*',
34 '--capture_test_ensure_resolution_alignment_in_capture_device=false']
35_WIN_TESTS = {
36 'vie_auto_test': _VIE_AUTO_TEST_CMD_LIST,
37 'voe_auto_test': ['voe_auto_test',
38 '--automated'],
39}
40_MAC_TESTS = {
41 'vie_auto_test': _VIE_AUTO_TEST_CMD_LIST,
42 'voe_auto_test': ['voe_auto_test',
43 '--automated',
44 ('--gtest_filter='
45 '-VolumeTest.SetVolumeBeforePlayoutWorks' # bug 527
46 )],
47}
48_LINUX_TESTS = {
49 'vie_auto_test': _VIE_AUTO_TEST_CMD_LIST,
50 'voe_auto_test': ['voe_auto_test',
51 '--automated',
52 '--gtest_filter=-RtpFuzzTest.*'],
53 'audio_e2e_test': ['python',
54 'run_audio_test.py',
kjellander@webrtc.orgacb75d62013-01-28 21:19:56 +000055 '--input=../../resources/e2e_audio_in.pcm',
kjellander@webrtc.org58598d62013-01-25 10:10:53 +000056 '--output=/tmp/e2e_audio_out.pcm',
57 '--codec=L16',
kjellander@webrtc.org0fb937a2013-01-30 21:39:10 +000058 '--harness=%s/audio_e2e_harness' % _CURRENT_DIR,
59 '--compare=%s/bin/compare-audio +16000 +wb' % _HOME,
60 '--regexp=(\d\.\d{3})'],
kjellander@webrtc.org58598d62013-01-25 10:10:53 +000061 'audioproc_perf': ['audioproc',
62 '-aecm', '-ns', '-agc', '--fixed_digital', '--perf',
63 '-pb', '../../resources/audioproc.aecdump'],
64 'isac_fixed_perf': ['iSACFixtest',
65 '32000', '../../resources/speech_and_misc_wb.pcm',
66 'isac_speech_and_misc_wb.pcm'],
67}
kjellander@webrtc.org58598d62013-01-25 10:10:53 +000068
69
70def main():
71 parser = optparse.OptionParser('usage: %prog -t <test> [-t <test> ...]\n'
72 'If no test is specified, all tests are run.')
73 parser.add_option('-l', '--list', action='store_true', default=False,
74 help='Lists all currently supported tests.')
75 parser.add_option('-t', '--test', action='append', default=[],
76 help='Which test to run. May be specified multiple times.')
phoglund@webrtc.org2ce235e2013-03-07 09:59:43 +000077 options, _ = parser.parse_args()
kjellander@webrtc.org58598d62013-01-25 10:10:53 +000078
79 if sys.platform.startswith('win'):
80 test_dict = _WIN_TESTS
81 elif sys.platform.startswith('linux'):
82 test_dict = _LINUX_TESTS
83 elif sys.platform.startswith('darwin'):
84 test_dict = _MAC_TESTS
85 else:
86 parser.error('Unsupported platform: %s' % sys.platform)
87
88 if options.list:
89 print 'Available tests:'
90 print 'Test name Command line'
91 print '========= ============'
92 for test, cmd_line in test_dict.items():
93 print '%-20s %s' % (test, ' '.join(cmd_line))
94 return
95
96 if not options.test:
97 options.test = test_dict.keys()
98 for test in options.test:
99 if test not in test_dict:
100 parser.error('Test "%s" is not supported (use --list to view supported '
101 'tests).')
102
kjellander@webrtc.orgacb75d62013-01-28 21:19:56 +0000103 # Change current working directory to the script's dir to make the relative
104 # paths always work.
105 os.chdir(_CURRENT_DIR)
106 print 'Changed working directory to: %s' % _CURRENT_DIR
107
kjellander@webrtc.org58598d62013-01-25 10:10:53 +0000108 print 'Running WebRTC Buildbot tests: %s' % options.test
109 for test in options.test:
110 cmd_line = test_dict[test]
111
112 # Create absolute paths to test executables for non-Python tests.
113 if cmd_line[0] != 'python':
114 cmd_line[0] = os.path.join(_CURRENT_DIR, cmd_line[0])
115
116 print 'Running: %s' % ' '.join(cmd_line)
117 try:
118 subprocess.check_call(cmd_line)
119 except subprocess.CalledProcessError as e:
120 print >> sys.stderr, ('An error occurred during test execution: return '
121 'code: %d' % e.returncode)
122 return -1
123
124 print 'Testing completed successfully.'
125 return 0
126
127
128if __name__ == '__main__':
129 sys.exit(main())