diff --git a/DEPS b/DEPS index 3189012b98..c49e85ee67 100644 --- a/DEPS +++ b/DEPS @@ -14,7 +14,7 @@ vars = { # External resources like video and audio files used for testing purposes. # Downloaded on demand when needed. - "webrtc_resources_revision": "13", + "webrtc_resources_revision": "14", } # NOTE: Prefer revision numbers to tags for svn deps. Use http rather than diff --git a/webrtc/test/buildbot_tests.py b/webrtc/test/buildbot_tests.py index 0ddb948db4..a8d8e71cf4 100755 --- a/webrtc/test/buildbot_tests.py +++ b/webrtc/test/buildbot_tests.py @@ -49,7 +49,7 @@ _LINUX_TESTS = { '--gtest_filter=-RtpFuzzTest.*'], 'audio_e2e_test': ['python', 'run_audio_test.py', - '--input=e2e_audio_in.pcm', + '--input=../../resources/e2e_audio_in.pcm', '--output=/tmp/e2e_audio_out.pcm', '--codec=L16', '--compare="~/bin/compare-audio +16000 +wb"', @@ -97,6 +97,11 @@ def main(): parser.error('Test "%s" is not supported (use --list to view supported ' 'tests).') + # Change current working directory to the script's dir to make the relative + # paths always work. + os.chdir(_CURRENT_DIR) + print 'Changed working directory to: %s' % _CURRENT_DIR + print 'Running WebRTC Buildbot tests: %s' % options.test for test in options.test: cmd_line = test_dict[test]