mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 05:40:42 +01:00
Remove memcheck.
Since the linux_memcheck trybot is no more, this CL removes all the code needed to make it work. Bug: webrtc:7737, webrtc:8356, webrtc:9570 Change-Id: I09a9467b8bf895146a3384c2c915b54662721af6 Reviewed-on: https://webrtc-review.googlesource.com/90863 Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Patrik Höglund <phoglund@webrtc.org> Reviewed-by: Erik Språng <sprang@webrtc.org> Reviewed-by: Björn Terelius <terelius@webrtc.org> Reviewed-by: Oleh Prypin <oprypin@webrtc.org> Reviewed-by: Niels Moller <nisse@webrtc.org> Cr-Commit-Position: refs/heads/master@{#24201}
This commit is contained in:
parent
e22a26f6f1
commit
264bee8bab
41 changed files with 2 additions and 4151 deletions
|
@ -792,7 +792,6 @@ def CommonChecks(input_api, output_api):
|
|||
r'^tools[\\\/].*\.py$',
|
||||
# TODO(phoglund): should arguably be checked.
|
||||
r'^tools_webrtc[\\\/]mb[\\\/].*\.py$',
|
||||
r'^tools_webrtc[\\\/]valgrind[\\\/].*\.py$',
|
||||
r'^xcodebuild.*[\\\/].*\.py$',),
|
||||
pylintrc='pylintrc'))
|
||||
|
||||
|
|
|
@ -120,6 +120,7 @@ if (rtc_include_tests) {
|
|||
"audio_state_unittest.cc",
|
||||
"mock_voe_channel_proxy.h",
|
||||
"remix_resample_unittest.cc",
|
||||
"test/audio_stats_test.cc",
|
||||
"time_interval_unittest.cc",
|
||||
"transport_feedback_packet_loss_tracker_unittest.cc",
|
||||
]
|
||||
|
@ -158,11 +159,6 @@ if (rtc_include_tests) {
|
|||
"//third_party/abseil-cpp/absl/memory",
|
||||
]
|
||||
|
||||
if (!rtc_use_memcheck) {
|
||||
# This test is timing dependent, which rules out running on memcheck bots.
|
||||
sources += [ "test/audio_stats_test.cc" ]
|
||||
}
|
||||
|
||||
if (!build_with_chromium && is_clang) {
|
||||
# Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
|
||||
suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
|
||||
|
|
|
@ -50,8 +50,6 @@ verifiers {
|
|||
builders { name: "linux_chromium_compile" }
|
||||
builders { name: "linux_compile_dbg" }
|
||||
builders { name: "linux_libfuzzer_rel" }
|
||||
# TODO(bugs.webrtc.org/8356): Investigate fixing and re-enabling.
|
||||
#builders { name: "linux_memcheck" }
|
||||
builders { name: "linux_msan" }
|
||||
builders { name: "linux_rel" }
|
||||
builders { name: "linux_tsan2" }
|
||||
|
|
|
@ -299,9 +299,6 @@ if (rtc_enable_protobuf) {
|
|||
testonly = true
|
||||
assert(rtc_enable_protobuf)
|
||||
defines = [ "ENABLE_RTC_EVENT_LOG" ]
|
||||
if (rtc_use_memcheck) {
|
||||
defines += [ "WEBRTC_USE_MEMCHECK" ]
|
||||
}
|
||||
sources = [
|
||||
"rtc_event_log/encoder/rtc_event_log_encoder_unittest.cc",
|
||||
"rtc_event_log/output/rtc_event_log_output_file_unittest.cc",
|
||||
|
|
|
@ -143,7 +143,6 @@ TEST_F(RtcEventLogOutputFileTest, AllowReasonableFileSizeLimits) {
|
|||
}
|
||||
|
||||
#if RTC_DCHECK_IS_ON && GTEST_HAS_DEATH_TEST && !defined(WEBRTC_ANDROID)
|
||||
#if !defined(WEBRTC_USE_MEMCHECK) // Crashing expected to leak memory.
|
||||
TEST_F(RtcEventLogOutputFileTest, WritingToInactiveFileForbidden) {
|
||||
RtcEventLogOutputFile output_file(output_file_name_, 2);
|
||||
ASSERT_FALSE(output_file.Write("abc"));
|
||||
|
@ -163,7 +162,6 @@ TEST_F(RtcEventLogOutputFileTest, DisallowUnreasonableFileSizeLimits) {
|
|||
};
|
||||
EXPECT_DEATH(create_output_file(), "");
|
||||
}
|
||||
#endif // !WEBRTC_USE_MEMCHECK
|
||||
#endif
|
||||
|
||||
} // namespace webrtc
|
||||
|
|
|
@ -11,9 +11,6 @@ import("//build/config/ui.gni")
|
|||
if (is_android) {
|
||||
import("//build/config/android/rules.gni")
|
||||
}
|
||||
if (rtc_use_memcheck) {
|
||||
import("//tools_webrtc/valgrind/valgrind-webrtc.gni")
|
||||
}
|
||||
|
||||
group("test") {
|
||||
testonly = true
|
||||
|
@ -194,10 +191,6 @@ rtc_source_set("test_support") {
|
|||
if (is_ios && !build_with_chromium) {
|
||||
deps += [ "../sdk:common_objc" ]
|
||||
}
|
||||
|
||||
if (rtc_use_memcheck) {
|
||||
data = valgrind_webrtc_dependencies
|
||||
}
|
||||
}
|
||||
|
||||
if (rtc_include_tests) {
|
||||
|
@ -269,10 +262,6 @@ if (rtc_include_tests) {
|
|||
if (is_ios) {
|
||||
deps += [ "../sdk:common_objc" ]
|
||||
}
|
||||
|
||||
if (rtc_use_memcheck) {
|
||||
data = valgrind_webrtc_dependencies
|
||||
}
|
||||
}
|
||||
|
||||
rtc_source_set("test_support_test_artifacts") {
|
||||
|
|
|
@ -857,20 +857,7 @@ class MetaBuildWrapper(object):
|
|||
else:
|
||||
cmdline.append('../../testing/test_env.py')
|
||||
|
||||
# Memcheck is only supported for linux. Ignore in other platforms.
|
||||
if is_linux and 'rtc_use_memcheck=true' in vals['gn_args']:
|
||||
cmdline += [
|
||||
'bash',
|
||||
'../../tools_webrtc/valgrind/webrtc_tests.sh',
|
||||
'--tool',
|
||||
'memcheck',
|
||||
'--target',
|
||||
'Release',
|
||||
'--build-dir',
|
||||
'..',
|
||||
'--test',
|
||||
]
|
||||
elif test_type != 'raw':
|
||||
if test_type != 'raw':
|
||||
extra_files += [
|
||||
'../../third_party/gtest-parallel/gtest-parallel',
|
||||
'../../third_party/gtest-parallel/gtest_parallel.py',
|
||||
|
|
|
@ -44,7 +44,6 @@
|
|||
'Linux64 Release (ARM)': 'release_bot_arm64',
|
||||
'Linux64 Release (GCC)': 'gcc_release_bot_x64',
|
||||
'Linux Asan': 'asan_lsan_clang_release_bot_x64',
|
||||
'Linux Memcheck': 'memcheck_release_bot_x64',
|
||||
'Linux MSan': 'msan_clang_release_bot_x64',
|
||||
'Linux Tsan v2': 'tsan_clang_release_bot_x64',
|
||||
'Linux UBSan': 'ubsan_clang_release_bot_x64',
|
||||
|
@ -198,7 +197,6 @@
|
|||
'linux32_arm_rel': 'release_bot_arm',
|
||||
'linux_asan': 'asan_lsan_clang_release_bot_x64',
|
||||
'linux_gcc_rel': 'gcc_release_bot_x64',
|
||||
'linux_memcheck': 'memcheck_release_bot_x64',
|
||||
'linux_msan': 'msan_clang_release_bot_x64',
|
||||
'linux_tsan2': 'tsan_clang_release_bot_x64',
|
||||
'linux_ubsan': 'ubsan_clang_release_bot_x64',
|
||||
|
@ -334,10 +332,6 @@
|
|||
'libfuzzer', 'asan', 'optimize_for_fuzzing', 'openh264_release_bot',
|
||||
'x64', 'no_rtc_tests'
|
||||
],
|
||||
'memcheck_release_bot_x64': [
|
||||
'memcheck', 'gn', 'openh264_release_bot', 'x64', 'use_default_libcxx',
|
||||
'no_lld'
|
||||
],
|
||||
|
||||
# iOS
|
||||
# The 'ios' config is just used for auditing. iOS bots
|
||||
|
@ -533,10 +527,6 @@
|
|||
'gn_args': 'is_lsan=true',
|
||||
},
|
||||
|
||||
'memcheck': {
|
||||
'gn_args': 'rtc_use_memcheck=true',
|
||||
},
|
||||
|
||||
'minimal_symbols': {
|
||||
'gn_args': 'symbol_level=1 strip_absolute_paths_from_debug_symbols=true',
|
||||
},
|
||||
|
@ -606,10 +596,6 @@
|
|||
'gn_args': 'target_cpu="x86"',
|
||||
},
|
||||
|
||||
'use_default_libcxx': {
|
||||
'gn_args': 'use_custom_libcxx=false',
|
||||
},
|
||||
|
||||
'intelligibility_enhancer': {
|
||||
'gn_args': 'rtc_enable_intelligibility_enhancer=true',
|
||||
},
|
||||
|
|
|
@ -117,7 +117,6 @@ TEST_CONFIG = """\
|
|||
'fake_builder': 'rel_bot',
|
||||
'fake_debug_builder': 'debug_goma',
|
||||
'fake_args_bot': '//build/args/bots/fake_master/fake_args_bot.gn',
|
||||
'fake_memcheck_bot': 'memcheck_bot',
|
||||
'fake_multi_phase': { 'phase_1': 'phase_1', 'phase_2': 'phase_2'},
|
||||
'fake_android_bot': 'android_bot',
|
||||
},
|
||||
|
@ -127,7 +126,6 @@ TEST_CONFIG = """\
|
|||
'debug_goma': ['debug', 'goma'],
|
||||
'phase_1': ['phase_1'],
|
||||
'phase_2': ['phase_2'],
|
||||
'memcheck_bot': ['memcheck'],
|
||||
'android_bot': ['android'],
|
||||
},
|
||||
'mixins': {
|
||||
|
@ -149,9 +147,6 @@ TEST_CONFIG = """\
|
|||
'debug': {
|
||||
'gn_args': 'is_debug=true',
|
||||
},
|
||||
'memcheck': {
|
||||
'gn_args': 'rtc_use_memcheck=true',
|
||||
},
|
||||
'android': {
|
||||
'gn_args': 'target_os="android"',
|
||||
}
|
||||
|
@ -661,57 +656,6 @@ class UnitTest(unittest.TestCase):
|
|||
'--tsan=0',
|
||||
])
|
||||
|
||||
def test_isolate_console_test_launcher_memcheck(self):
|
||||
test_files = {
|
||||
'/tmp/swarming_targets': 'base_unittests\n',
|
||||
'/fake_src/testing/buildbot/gn_isolate_map.pyl': (
|
||||
"{'base_unittests': {"
|
||||
" 'label': '//base:base_unittests',"
|
||||
" 'type': 'console_test_launcher',"
|
||||
"}}\n"
|
||||
),
|
||||
'/fake_src/out/Release/base_unittests.runtime_deps': (
|
||||
"base_unittests\n"
|
||||
"lots_of_memcheck_dependencies\n"
|
||||
"../../tools_webrtc/valgrind/webrtc_tests.sh\n"
|
||||
),
|
||||
}
|
||||
mbw = self.check(['gen', '-c', 'memcheck_bot', '//out/Release',
|
||||
'--swarming-targets-file', '/tmp/swarming_targets',
|
||||
'--isolate-map-file',
|
||||
'/fake_src/testing/buildbot/gn_isolate_map.pyl'],
|
||||
files=test_files, ret=0)
|
||||
|
||||
isolate_file = mbw.files['/fake_src/out/Release/base_unittests.isolate']
|
||||
isolate_file_contents = ast.literal_eval(isolate_file)
|
||||
files = isolate_file_contents['variables']['files']
|
||||
command = isolate_file_contents['variables']['command']
|
||||
|
||||
self.assertEqual(files, [
|
||||
'../../.vpython',
|
||||
'../../testing/test_env.py',
|
||||
'../../tools_webrtc/valgrind/webrtc_tests.sh',
|
||||
'base_unittests',
|
||||
'lots_of_memcheck_dependencies',
|
||||
])
|
||||
self.assertEqual(command, [
|
||||
'../../testing/test_env.py',
|
||||
'bash',
|
||||
'../../tools_webrtc/valgrind/webrtc_tests.sh',
|
||||
'--tool',
|
||||
'memcheck',
|
||||
'--target',
|
||||
'Release',
|
||||
'--build-dir',
|
||||
'..',
|
||||
'--test',
|
||||
'./base_unittests',
|
||||
'--asan=0',
|
||||
'--lsan=0',
|
||||
'--msan=0',
|
||||
'--tsan=0',
|
||||
])
|
||||
|
||||
def test_isolate_test_launcher_with_webcam(self):
|
||||
test_files = {
|
||||
'/tmp/swarming_targets': 'base_unittests\n',
|
||||
|
|
|
@ -1,53 +0,0 @@
|
|||
@echo off
|
||||
:: Copyright (c) 2011 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.
|
||||
|
||||
setlocal
|
||||
|
||||
set THISDIR=%~dp0
|
||||
set TOOL_NAME="unknown"
|
||||
|
||||
:: Get the tool name and put it into TOOL_NAME {{{1
|
||||
:: NB: SHIFT command doesn't modify %*
|
||||
:PARSE_ARGS_LOOP
|
||||
if %1 == () GOTO:TOOLNAME_NOT_FOUND
|
||||
if %1 == --tool GOTO:TOOLNAME_FOUND
|
||||
SHIFT
|
||||
goto :PARSE_ARGS_LOOP
|
||||
|
||||
:TOOLNAME_NOT_FOUND
|
||||
echo "Please specify a tool (e.g. drmemory) by using --tool flag"
|
||||
exit /B 1
|
||||
|
||||
:TOOLNAME_FOUND
|
||||
SHIFT
|
||||
set TOOL_NAME=%1
|
||||
:: }}}
|
||||
if "%TOOL_NAME%" == "drmemory" GOTO :SETUP_DRMEMORY
|
||||
if "%TOOL_NAME%" == "drmemory_light" GOTO :SETUP_DRMEMORY
|
||||
if "%TOOL_NAME%" == "drmemory_full" GOTO :SETUP_DRMEMORY
|
||||
if "%TOOL_NAME%" == "drmemory_pattern" GOTO :SETUP_DRMEMORY
|
||||
echo "Unknown tool: `%TOOL_NAME%`! Only drmemory is supported right now"
|
||||
exit /B 1
|
||||
|
||||
:SETUP_DRMEMORY
|
||||
:: Set up DRMEMORY_COMMAND to invoke Dr. Memory {{{1
|
||||
set DRMEMORY_PATH=%THISDIR%..\..\third_party\drmemory
|
||||
set DRMEMORY_SFX=%DRMEMORY_PATH%\drmemory-windows-sfx.exe
|
||||
if EXIST %DRMEMORY_SFX% GOTO DRMEMORY_BINARY_OK
|
||||
echo "Can't find Dr. Memory executables."
|
||||
echo "See http://www.chromium.org/developers/how-tos/using-valgrind/dr-memory"
|
||||
echo "for the instructions on how to get them."
|
||||
exit /B 1
|
||||
|
||||
:DRMEMORY_BINARY_OK
|
||||
%DRMEMORY_SFX% -o%DRMEMORY_PATH%\unpacked -y
|
||||
set DRMEMORY_COMMAND=%DRMEMORY_PATH%\unpacked\bin\drmemory.exe
|
||||
:: }}}
|
||||
goto :RUN_TESTS
|
||||
|
||||
:RUN_TESTS
|
||||
set PYTHONPATH=%THISDIR%../python/google
|
||||
set RUNNING_ON_VALGRIND=yes
|
||||
python %THISDIR%/chrome_tests.py %*
|
|
@ -1,869 +0,0 @@
|
|||
#!/usr/bin/env python
|
||||
# Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license
|
||||
# that can be found in the LICENSE file in the root of the source
|
||||
# tree. An additional intellectual property rights grant can be found
|
||||
# in the file PATENTS. All contributing project authors may
|
||||
# be found in the AUTHORS file in the root of the source tree.
|
||||
|
||||
''' Runs various chrome tests through valgrind_test.py.'''
|
||||
|
||||
import glob
|
||||
import logging
|
||||
import multiprocessing
|
||||
import optparse
|
||||
import os
|
||||
import stat
|
||||
import subprocess
|
||||
import sys
|
||||
|
||||
import logging_utils
|
||||
import path_utils
|
||||
|
||||
import common
|
||||
import valgrind_test
|
||||
|
||||
class TestNotFound(Exception): pass
|
||||
|
||||
class MultipleGTestFiltersSpecified(Exception): pass
|
||||
|
||||
class BuildDirNotFound(Exception): pass
|
||||
|
||||
class BuildDirAmbiguous(Exception): pass
|
||||
|
||||
class ExecutableNotFound(Exception): pass
|
||||
|
||||
class BadBinary(Exception): pass
|
||||
|
||||
class ChromeTests:
|
||||
SLOW_TOOLS = ["memcheck", "drmemory"]
|
||||
LAYOUT_TESTS_DEFAULT_CHUNK_SIZE = 300
|
||||
|
||||
def __init__(self, options, args, test):
|
||||
if ':' in test:
|
||||
(self._test, self._gtest_filter) = test.split(':', 1)
|
||||
else:
|
||||
self._test = test
|
||||
self._gtest_filter = options.gtest_filter
|
||||
|
||||
if self._test not in self._test_list:
|
||||
raise TestNotFound("Unknown test: %s" % test)
|
||||
|
||||
if options.gtest_filter and options.gtest_filter != self._gtest_filter:
|
||||
raise MultipleGTestFiltersSpecified("Can not specify both --gtest_filter "
|
||||
"and --test %s" % test)
|
||||
|
||||
self._options = options
|
||||
self._args = args
|
||||
|
||||
script_dir = path_utils.ScriptDir()
|
||||
# Compute the top of the tree (the "source dir") from the script dir (where
|
||||
# this script lives). We assume that the script dir is in tools/valgrind/
|
||||
# relative to the top of the tree.
|
||||
self._source_dir = os.path.dirname(os.path.dirname(script_dir))
|
||||
# since this path is used for string matching, make sure it's always
|
||||
# an absolute Unix-style path
|
||||
self._source_dir = os.path.abspath(self._source_dir).replace('\\', '/')
|
||||
valgrind_test_script = os.path.join(script_dir, "valgrind_test.py")
|
||||
self._command_preamble = ["--source-dir=%s" % (self._source_dir)]
|
||||
|
||||
if not self._options.build_dir:
|
||||
dirs = [
|
||||
os.path.join(self._source_dir, "xcodebuild", "Debug"),
|
||||
os.path.join(self._source_dir, "out", "Debug"),
|
||||
os.path.join(self._source_dir, "build", "Debug"),
|
||||
]
|
||||
build_dir = [d for d in dirs if os.path.isdir(d)]
|
||||
if len(build_dir) > 1:
|
||||
raise BuildDirAmbiguous("Found more than one suitable build dir:\n"
|
||||
"%s\nPlease specify just one "
|
||||
"using --build-dir" % ", ".join(build_dir))
|
||||
elif build_dir:
|
||||
self._options.build_dir = build_dir[0]
|
||||
else:
|
||||
self._options.build_dir = None
|
||||
|
||||
if self._options.build_dir:
|
||||
build_dir = os.path.abspath(self._options.build_dir)
|
||||
self._command_preamble += ["--build-dir=%s" % (self._options.build_dir)]
|
||||
|
||||
def _EnsureBuildDirFound(self):
|
||||
if not self._options.build_dir:
|
||||
raise BuildDirNotFound("Oops, couldn't find a build dir, please "
|
||||
"specify it manually using --build-dir")
|
||||
|
||||
def _DefaultCommand(self, tool, exe=None, valgrind_test_args=None):
|
||||
'''Generates the default command array that most tests will use.'''
|
||||
if exe and common.IsWindows():
|
||||
exe += '.exe'
|
||||
|
||||
cmd = list(self._command_preamble)
|
||||
|
||||
# Find all suppressions matching the following pattern:
|
||||
# tools/valgrind/TOOL/suppressions[_PLATFORM].txt
|
||||
# and list them with --suppressions= prefix.
|
||||
script_dir = path_utils.ScriptDir()
|
||||
tool_name = tool.ToolName();
|
||||
suppression_file = os.path.join(script_dir, tool_name, "suppressions.txt")
|
||||
if os.path.exists(suppression_file):
|
||||
cmd.append("--suppressions=%s" % suppression_file)
|
||||
# Platform-specific suppression
|
||||
for platform in common.PlatformNames():
|
||||
platform_suppression_file = \
|
||||
os.path.join(script_dir, tool_name, 'suppressions_%s.txt' % platform)
|
||||
if os.path.exists(platform_suppression_file):
|
||||
cmd.append("--suppressions=%s" % platform_suppression_file)
|
||||
|
||||
if tool_name == "drmemory":
|
||||
if self._options.drmemory_ops:
|
||||
# prepending " " to avoid Dr. Memory's option confusing optparse
|
||||
cmd += ["--drmemory_ops", " " + self._options.drmemory_ops]
|
||||
|
||||
if self._options.valgrind_tool_flags:
|
||||
cmd += self._options.valgrind_tool_flags.split(" ")
|
||||
if self._options.keep_logs:
|
||||
cmd += ["--keep_logs"]
|
||||
if valgrind_test_args != None:
|
||||
for arg in valgrind_test_args:
|
||||
cmd.append(arg)
|
||||
if exe:
|
||||
self._EnsureBuildDirFound()
|
||||
exe_path = os.path.join(self._options.build_dir, exe)
|
||||
if not os.path.exists(exe_path):
|
||||
raise ExecutableNotFound("Couldn't find '%s'" % exe_path)
|
||||
|
||||
# Make sure we don't try to test ASan-built binaries
|
||||
# with other dynamic instrumentation-based tools.
|
||||
# TODO(timurrrr): also check TSan and MSan?
|
||||
# `nm` might not be available, so use try-except.
|
||||
try:
|
||||
# Do not perform this check on OS X, as 'nm' on 10.6 can't handle
|
||||
# binaries built with Clang 3.5+.
|
||||
if not common.IsMac():
|
||||
nm_output = subprocess.check_output(["nm", exe_path])
|
||||
if nm_output.find("__asan_init") != -1:
|
||||
raise BadBinary("You're trying to run an executable instrumented "
|
||||
"with AddressSanitizer under %s. Please provide "
|
||||
"an uninstrumented executable." % tool_name)
|
||||
except OSError:
|
||||
pass
|
||||
|
||||
cmd.append(exe_path)
|
||||
# Valgrind runs tests slowly, so slow tests hurt more; show elapased time
|
||||
# so we can find the slowpokes.
|
||||
cmd.append("--gtest_print_time")
|
||||
# Built-in test launcher for gtest-based executables runs tests using
|
||||
# multiple process by default. Force the single-process mode back.
|
||||
cmd.append("--single-process-tests")
|
||||
if self._options.gtest_repeat:
|
||||
cmd.append("--gtest_repeat=%s" % self._options.gtest_repeat)
|
||||
if self._options.gtest_shuffle:
|
||||
cmd.append("--gtest_shuffle")
|
||||
if self._options.gtest_break_on_failure:
|
||||
cmd.append("--gtest_break_on_failure")
|
||||
if self._options.test_launcher_bot_mode:
|
||||
cmd.append("--test-launcher-bot-mode")
|
||||
if self._options.test_launcher_total_shards is not None:
|
||||
cmd.append("--test-launcher-total-shards=%d"
|
||||
% self._options.test_launcher_total_shards)
|
||||
if self._options.test_launcher_shard_index is not None:
|
||||
cmd.append("--test-launcher-shard-index=%d"
|
||||
% self._options.test_launcher_shard_index)
|
||||
return cmd
|
||||
|
||||
def Run(self):
|
||||
''' Runs the test specified by command-line argument --test '''
|
||||
logging.info("running test %s" % (self._test))
|
||||
return self._test_list[self._test](self)
|
||||
|
||||
def _AppendGtestFilter(self, tool, name, cmd):
|
||||
'''Append an appropriate --gtest_filter flag to the googletest binary
|
||||
invocation.
|
||||
If the user passed their own filter mentioning only one test, just use
|
||||
it. Otherwise, filter out tests listed in the appropriate gtest_exclude
|
||||
files.
|
||||
'''
|
||||
if (self._gtest_filter and
|
||||
":" not in self._gtest_filter and
|
||||
"?" not in self._gtest_filter and
|
||||
"*" not in self._gtest_filter):
|
||||
cmd.append("--gtest_filter=%s" % self._gtest_filter)
|
||||
return
|
||||
|
||||
filters = []
|
||||
gtest_files_dir = os.path.join(path_utils.ScriptDir(), "gtest_exclude")
|
||||
|
||||
gtest_filter_files = [
|
||||
os.path.join(gtest_files_dir, name + ".gtest-%s.txt" % tool.ToolName())]
|
||||
# Use ".gtest.txt" files only for slow tools, as they now contain
|
||||
# Valgrind- and Dr.Memory-specific filters.
|
||||
# TODO(glider): rename the files to ".gtest_slow.txt"
|
||||
if tool.ToolName() in ChromeTests.SLOW_TOOLS:
|
||||
gtest_filter_files += [os.path.join(gtest_files_dir, name + ".gtest.txt")]
|
||||
for platform_suffix in common.PlatformNames():
|
||||
gtest_filter_files += [
|
||||
os.path.join(gtest_files_dir, name + ".gtest_%s.txt" % platform_suffix),
|
||||
os.path.join(gtest_files_dir, name + ".gtest-%s_%s.txt" % \
|
||||
(tool.ToolName(), platform_suffix))]
|
||||
logging.info("Reading gtest exclude filter files:")
|
||||
for filename in gtest_filter_files:
|
||||
# strip the leading absolute path (may be very long on the bot)
|
||||
# and the following / or \.
|
||||
readable_filename = filename.replace("\\", "/") # '\' on Windows
|
||||
readable_filename = readable_filename.replace(self._source_dir, "")[1:]
|
||||
if not os.path.exists(filename):
|
||||
logging.info(" \"%s\" - not found" % readable_filename)
|
||||
continue
|
||||
logging.info(" \"%s\" - OK" % readable_filename)
|
||||
f = open(filename, 'r')
|
||||
for line in f.readlines():
|
||||
if line.startswith("#") or line.startswith("//") or line.isspace():
|
||||
continue
|
||||
line = line.rstrip()
|
||||
test_prefixes = ["FLAKY", "FAILS"]
|
||||
for p in test_prefixes:
|
||||
# Strip prefixes from the test names.
|
||||
line = line.replace(".%s_" % p, ".")
|
||||
# Exclude the original test name.
|
||||
filters.append(line)
|
||||
if line[-2:] != ".*":
|
||||
# List all possible prefixes if line doesn't end with ".*".
|
||||
for p in test_prefixes:
|
||||
filters.append(line.replace(".", ".%s_" % p))
|
||||
# Get rid of duplicates.
|
||||
filters = set(filters)
|
||||
gtest_filter = self._gtest_filter
|
||||
if len(filters):
|
||||
if gtest_filter:
|
||||
gtest_filter += ":"
|
||||
if gtest_filter.find("-") < 0:
|
||||
gtest_filter += "-"
|
||||
else:
|
||||
gtest_filter = "-"
|
||||
gtest_filter += ":".join(filters)
|
||||
if gtest_filter:
|
||||
cmd.append("--gtest_filter=%s" % gtest_filter)
|
||||
|
||||
@staticmethod
|
||||
def ShowTests():
|
||||
test_to_names = {}
|
||||
for name, test_function in ChromeTests._test_list.iteritems():
|
||||
test_to_names.setdefault(test_function, []).append(name)
|
||||
|
||||
name_to_aliases = {}
|
||||
for names in test_to_names.itervalues():
|
||||
names.sort(key=lambda name: len(name))
|
||||
name_to_aliases[names[0]] = names[1:]
|
||||
|
||||
print
|
||||
print "Available tests:"
|
||||
print "----------------"
|
||||
for name, aliases in sorted(name_to_aliases.iteritems()):
|
||||
if aliases:
|
||||
print " {} (aka {})".format(name, ', '.join(aliases))
|
||||
else:
|
||||
print " {}".format(name)
|
||||
|
||||
def SetupLdPath(self, requires_build_dir):
|
||||
if requires_build_dir:
|
||||
self._EnsureBuildDirFound()
|
||||
elif not self._options.build_dir:
|
||||
return
|
||||
|
||||
# Append build_dir to LD_LIBRARY_PATH so external libraries can be loaded.
|
||||
if (os.getenv("LD_LIBRARY_PATH")):
|
||||
os.putenv("LD_LIBRARY_PATH", "%s:%s" % (os.getenv("LD_LIBRARY_PATH"),
|
||||
self._options.build_dir))
|
||||
else:
|
||||
os.putenv("LD_LIBRARY_PATH", self._options.build_dir)
|
||||
|
||||
def SimpleTest(self, module, name, valgrind_test_args=None, cmd_args=None):
|
||||
tool = valgrind_test.CreateTool(self._options.valgrind_tool)
|
||||
cmd = self._DefaultCommand(tool, name, valgrind_test_args)
|
||||
self._AppendGtestFilter(tool, name, cmd)
|
||||
cmd.extend(['--test-tiny-timeout=1000'])
|
||||
if cmd_args:
|
||||
cmd.extend(cmd_args)
|
||||
|
||||
self.SetupLdPath(True)
|
||||
return tool.Run(cmd, module)
|
||||
|
||||
def RunCmdLine(self):
|
||||
tool = valgrind_test.CreateTool(self._options.valgrind_tool)
|
||||
cmd = self._DefaultCommand(tool, None, self._args)
|
||||
self.SetupLdPath(False)
|
||||
return tool.Run(cmd, None)
|
||||
|
||||
def TestAccessibility(self):
|
||||
return self.SimpleTest("accessibility", "accessibility_unittests")
|
||||
|
||||
def TestAddressInput(self):
|
||||
return self.SimpleTest("addressinput", "libaddressinput_unittests")
|
||||
|
||||
def TestAngle(self):
|
||||
return self.SimpleTest("angle", "angle_unittests")
|
||||
|
||||
def TestAppList(self):
|
||||
return self.SimpleTest("app_list", "app_list_unittests")
|
||||
|
||||
def TestAsh(self):
|
||||
return self.SimpleTest("ash", "ash_unittests")
|
||||
|
||||
def TestAura(self):
|
||||
return self.SimpleTest("aura", "aura_unittests")
|
||||
|
||||
def TestBase(self):
|
||||
return self.SimpleTest("base", "base_unittests")
|
||||
|
||||
def TestBlinkHeap(self):
|
||||
return self.SimpleTest("blink_heap", "blink_heap_unittests")
|
||||
|
||||
def TestBlinkPlatform(self):
|
||||
return self.SimpleTest("blink_platform", "blink_platform_unittests")
|
||||
|
||||
def TestCacheInvalidation(self):
|
||||
return self.SimpleTest("cacheinvalidation", "cacheinvalidation_unittests")
|
||||
|
||||
def TestCast(self):
|
||||
return self.SimpleTest("chrome", "cast_unittests")
|
||||
|
||||
def TestCC(self):
|
||||
return self.SimpleTest("cc", "cc_unittests",
|
||||
cmd_args=[
|
||||
"--cc-layer-tree-test-long-timeout"])
|
||||
|
||||
def TestChromeApp(self):
|
||||
return self.SimpleTest("chrome_app", "chrome_app_unittests")
|
||||
|
||||
def TestChromeElf(self):
|
||||
return self.SimpleTest("chrome_elf", "chrome_elf_unittests")
|
||||
|
||||
def TestChromeDriver(self):
|
||||
return self.SimpleTest("chromedriver", "chromedriver_unittests")
|
||||
|
||||
def TestChromeOS(self):
|
||||
return self.SimpleTest("chromeos", "chromeos_unittests")
|
||||
|
||||
def TestComponents(self):
|
||||
return self.SimpleTest("components", "components_unittests")
|
||||
|
||||
def TestCompositor(self):
|
||||
return self.SimpleTest("compositor", "compositor_unittests")
|
||||
|
||||
def TestContent(self):
|
||||
return self.SimpleTest("content", "content_unittests")
|
||||
|
||||
def TestCourgette(self):
|
||||
return self.SimpleTest("courgette", "courgette_unittests")
|
||||
|
||||
def TestCrypto(self):
|
||||
return self.SimpleTest("crypto", "crypto_unittests")
|
||||
|
||||
def TestDevice(self):
|
||||
return self.SimpleTest("device", "device_unittests")
|
||||
|
||||
def TestDisplay(self):
|
||||
return self.SimpleTest("display", "display_unittests")
|
||||
|
||||
def TestEvents(self):
|
||||
return self.SimpleTest("events", "events_unittests")
|
||||
|
||||
def TestExtensions(self):
|
||||
return self.SimpleTest("extensions", "extensions_unittests")
|
||||
|
||||
def TestFFmpegRegressions(self):
|
||||
return self.SimpleTest("chrome", "ffmpeg_regression_tests")
|
||||
|
||||
def TestGCM(self):
|
||||
return self.SimpleTest("gcm", "gcm_unit_tests")
|
||||
|
||||
def TestGfx(self):
|
||||
return self.SimpleTest("gfx", "gfx_unittests")
|
||||
|
||||
def TestGin(self):
|
||||
return self.SimpleTest("gin", "gin_unittests")
|
||||
|
||||
def TestGoogleApis(self):
|
||||
return self.SimpleTest("google_apis", "google_apis_unittests")
|
||||
|
||||
def TestGPU(self):
|
||||
return self.SimpleTest("gpu", "gpu_unittests")
|
||||
|
||||
def TestIpc(self):
|
||||
return self.SimpleTest("ipc", "ipc_tests",
|
||||
valgrind_test_args=["--trace_children"])
|
||||
|
||||
def TestInstallerUtil(self):
|
||||
return self.SimpleTest("installer_util", "installer_util_unittests")
|
||||
|
||||
def TestInstallStatic(self):
|
||||
return self.SimpleTest("install_static", "install_static_unittests")
|
||||
|
||||
def TestJingle(self):
|
||||
return self.SimpleTest("chrome", "jingle_unittests")
|
||||
|
||||
def TestKeyboard(self):
|
||||
return self.SimpleTest("keyboard", "keyboard_unittests")
|
||||
|
||||
def TestLatency(self):
|
||||
return self.SimpleTest("latency", "latency_unittests")
|
||||
|
||||
def TestMedia(self):
|
||||
return self.SimpleTest("chrome", "media_unittests")
|
||||
|
||||
def TestMessageCenter(self):
|
||||
return self.SimpleTest("message_center", "message_center_unittests")
|
||||
|
||||
def TestMidi(self):
|
||||
return self.SimpleTest("chrome", "midi_unittests")
|
||||
|
||||
def TestMojoCommon(self):
|
||||
return self.SimpleTest("mojo_common", "mojo_common_unittests")
|
||||
|
||||
def TestMojoPublicBindings(self):
|
||||
return self.SimpleTest("mojo_public_bindings",
|
||||
"mojo_public_bindings_unittests")
|
||||
|
||||
def TestMojoPublicSystem(self):
|
||||
return self.SimpleTest("mojo_public_system",
|
||||
"mojo_public_system_unittests")
|
||||
|
||||
def TestMojoPublicSysPerf(self):
|
||||
return self.SimpleTest("mojo_public_sysperf",
|
||||
"mojo_public_system_perftests")
|
||||
|
||||
def TestMojoSystem(self):
|
||||
return self.SimpleTest("mojo_system", "mojo_system_unittests")
|
||||
|
||||
def TestNet(self):
|
||||
return self.SimpleTest("net", "net_unittests")
|
||||
|
||||
def TestNetPerf(self):
|
||||
return self.SimpleTest("net", "net_perftests")
|
||||
|
||||
def TestPhoneNumber(self):
|
||||
return self.SimpleTest("phonenumber", "libphonenumber_unittests")
|
||||
|
||||
def TestPPAPI(self):
|
||||
return self.SimpleTest("chrome", "ppapi_unittests")
|
||||
|
||||
def TestPrinting(self):
|
||||
return self.SimpleTest("chrome", "printing_unittests")
|
||||
|
||||
def TestRemoting(self):
|
||||
return self.SimpleTest("chrome", "remoting_unittests",
|
||||
cmd_args=[
|
||||
"--ui-test-action-timeout=60000",
|
||||
"--ui-test-action-max-timeout=150000"])
|
||||
|
||||
def TestSkia(self):
|
||||
return self.SimpleTest("skia", "skia_unittests")
|
||||
|
||||
def TestSql(self):
|
||||
return self.SimpleTest("chrome", "sql_unittests")
|
||||
|
||||
def TestStorage(self):
|
||||
return self.SimpleTest("storage", "storage_unittests")
|
||||
|
||||
def TestLinuxSandbox(self):
|
||||
return self.SimpleTest("sandbox", "sandbox_linux_unittests")
|
||||
|
||||
def TestUnit(self):
|
||||
# http://crbug.com/51716
|
||||
# Disabling all unit tests
|
||||
# Problems reappeared after r119922
|
||||
if common.IsMac() and (self._options.valgrind_tool == "memcheck"):
|
||||
logging.warning("unit_tests are disabled for memcheck on MacOS.")
|
||||
return 0;
|
||||
return self.SimpleTest("chrome", "unit_tests")
|
||||
|
||||
def TestUIBaseUnit(self):
|
||||
return self.SimpleTest("chrome", "ui_base_unittests")
|
||||
|
||||
def TestUIChromeOS(self):
|
||||
return self.SimpleTest("chrome", "ui_chromeos_unittests")
|
||||
|
||||
def TestURL(self):
|
||||
return self.SimpleTest("chrome", "url_unittests")
|
||||
|
||||
def TestViews(self):
|
||||
return self.SimpleTest("views", "views_unittests")
|
||||
|
||||
|
||||
# Valgrind timeouts are in seconds.
|
||||
UI_VALGRIND_ARGS = ["--timeout=14400", "--trace_children", "--indirect"]
|
||||
# UI test timeouts are in milliseconds.
|
||||
UI_TEST_ARGS = ["--ui-test-action-timeout=60000",
|
||||
"--ui-test-action-max-timeout=150000",
|
||||
"--no-sandbox"]
|
||||
|
||||
# TODO(thestig) fine-tune these values.
|
||||
# Valgrind timeouts are in seconds.
|
||||
BROWSER_VALGRIND_ARGS = ["--timeout=50000", "--trace_children", "--indirect"]
|
||||
# Browser test timeouts are in milliseconds.
|
||||
BROWSER_TEST_ARGS = ["--ui-test-action-timeout=400000",
|
||||
"--ui-test-action-max-timeout=800000",
|
||||
"--no-sandbox"]
|
||||
|
||||
def TestBrowser(self):
|
||||
return self.SimpleTest("chrome", "browser_tests",
|
||||
valgrind_test_args=self.BROWSER_VALGRIND_ARGS,
|
||||
cmd_args=self.BROWSER_TEST_ARGS)
|
||||
|
||||
def TestContentBrowser(self):
|
||||
return self.SimpleTest("content", "content_browsertests",
|
||||
valgrind_test_args=self.BROWSER_VALGRIND_ARGS,
|
||||
cmd_args=self.BROWSER_TEST_ARGS)
|
||||
|
||||
def TestInteractiveUI(self):
|
||||
return self.SimpleTest("chrome", "interactive_ui_tests",
|
||||
valgrind_test_args=self.UI_VALGRIND_ARGS,
|
||||
cmd_args=self.UI_TEST_ARGS)
|
||||
|
||||
def TestSyncIntegration(self):
|
||||
return self.SimpleTest("chrome", "sync_integration_tests",
|
||||
valgrind_test_args=self.UI_VALGRIND_ARGS,
|
||||
cmd_args=(["--ui-test-action-max-timeout=450000"]))
|
||||
|
||||
def TestLayoutChunk(self, chunk_num, chunk_size):
|
||||
# Run tests [chunk_num*chunk_size .. (chunk_num+1)*chunk_size) from the
|
||||
# list of tests. Wrap around to beginning of list at end.
|
||||
# If chunk_size is zero, run all tests in the list once.
|
||||
# If a text file is given as argument, it is used as the list of tests.
|
||||
assert((chunk_size == 0) != (len(self._args) == 0))
|
||||
# Build the ginormous commandline in 'cmd'.
|
||||
# It's going to be roughly
|
||||
# python valgrind_test.py ...
|
||||
# but we'll use the --indirect flag to valgrind_test.py
|
||||
# to avoid valgrinding python.
|
||||
# Start by building the valgrind_test.py commandline.
|
||||
tool = valgrind_test.CreateTool(self._options.valgrind_tool)
|
||||
cmd = self._DefaultCommand(tool)
|
||||
cmd.append("--trace_children")
|
||||
cmd.append("--indirect_webkit_layout")
|
||||
cmd.append("--ignore_exit_code")
|
||||
# Now build script_cmd, the run-webkits-tests commandline.
|
||||
# Store each chunk in its own directory so that we can find the data later
|
||||
chunk_dir = os.path.join("layout", "chunk_%05d" % chunk_num)
|
||||
out_dir = os.path.join(path_utils.ScriptDir(), "latest")
|
||||
out_dir = os.path.join(out_dir, chunk_dir)
|
||||
if os.path.exists(out_dir):
|
||||
old_files = glob.glob(os.path.join(out_dir, "*.txt"))
|
||||
for f in old_files:
|
||||
os.remove(f)
|
||||
else:
|
||||
os.makedirs(out_dir)
|
||||
script = os.path.join(self._source_dir, "third_party", "WebKit", "Tools",
|
||||
"Scripts", "run-webkit-tests")
|
||||
# http://crbug.com/260627: After the switch to content_shell from DRT, each
|
||||
# test now brings up 3 processes. Under Valgrind, they become memory bound
|
||||
# and can eventually OOM if we don't reduce the total count.
|
||||
# It'd be nice if content_shell automatically throttled the startup of new
|
||||
# tests if we're low on memory.
|
||||
jobs = max(1, int(multiprocessing.cpu_count() * 0.3))
|
||||
script_cmd = ["python", script, "-v",
|
||||
# run a separate DumpRenderTree for each test
|
||||
"--batch-size=1",
|
||||
"--fully-parallel",
|
||||
"--child-processes=%d" % jobs,
|
||||
"--time-out-ms=800000",
|
||||
"--no-retry-failures", # retrying takes too much time
|
||||
# http://crbug.com/176908: Don't launch a browser when done.
|
||||
"--no-show-results",
|
||||
"--nocheck-sys-deps",
|
||||
"--additional-driver-flag=--no-sandbox"]
|
||||
# Pass build mode to run-webkit-tests. We aren't passed it directly,
|
||||
# so parse it out of build_dir. run-webkit-tests can only handle
|
||||
# the two values "Release" and "Debug".
|
||||
# TODO(Hercules): unify how all our scripts pass around build mode
|
||||
# (--mode / --target / --build-dir / --debug)
|
||||
if self._options.build_dir:
|
||||
build_root, mode = os.path.split(self._options.build_dir)
|
||||
script_cmd.extend(["--build-directory", build_root, "--target", mode])
|
||||
if (chunk_size > 0):
|
||||
script_cmd.append("--run-chunk=%d:%d" % (chunk_num, chunk_size))
|
||||
if len(self._args):
|
||||
# if the arg is a txt file, then treat it as a list of tests
|
||||
if os.path.isfile(self._args[0]) and self._args[0][-4:] == ".txt":
|
||||
script_cmd.append("--test-list=%s" % self._args[0])
|
||||
else:
|
||||
script_cmd.extend(self._args)
|
||||
self._AppendGtestFilter(tool, "layout", script_cmd)
|
||||
# Now run script_cmd with the wrapper in cmd
|
||||
cmd.extend(["--"])
|
||||
cmd.extend(script_cmd)
|
||||
|
||||
# Layout tests often times fail quickly, but the buildbot remains green.
|
||||
# Detect this situation when running with the default chunk size.
|
||||
if chunk_size == self.LAYOUT_TESTS_DEFAULT_CHUNK_SIZE:
|
||||
min_runtime_in_seconds=120
|
||||
else:
|
||||
min_runtime_in_seconds=0
|
||||
ret = tool.Run(cmd, "layout", min_runtime_in_seconds=min_runtime_in_seconds)
|
||||
return ret
|
||||
|
||||
|
||||
def TestLayout(self):
|
||||
# A "chunk file" is maintained in the local directory so that each test
|
||||
# runs a slice of the layout tests of size chunk_size that increments with
|
||||
# each run. Since tests can be added and removed from the layout tests at
|
||||
# any time, this is not going to give exact coverage, but it will allow us
|
||||
# to continuously run small slices of the layout tests under valgrind rather
|
||||
# than having to run all of them in one shot.
|
||||
chunk_size = self._options.num_tests
|
||||
if chunk_size == 0 or len(self._args):
|
||||
return self.TestLayoutChunk(0, 0)
|
||||
chunk_num = 0
|
||||
chunk_file = os.path.join("valgrind_layout_chunk.txt")
|
||||
logging.info("Reading state from " + chunk_file)
|
||||
try:
|
||||
f = open(chunk_file)
|
||||
if f:
|
||||
chunk_str = f.read()
|
||||
if len(chunk_str):
|
||||
chunk_num = int(chunk_str)
|
||||
# This should be enough so that we have a couple of complete runs
|
||||
# of test data stored in the archive (although note that when we loop
|
||||
# that we almost guaranteed won't be at the end of the test list)
|
||||
if chunk_num > 10000:
|
||||
chunk_num = 0
|
||||
f.close()
|
||||
except IOError, (errno, strerror):
|
||||
logging.error("error reading from file %s (%d, %s)" % (chunk_file,
|
||||
errno, strerror))
|
||||
# Save the new chunk size before running the tests. Otherwise if a
|
||||
# particular chunk hangs the bot, the chunk number will never get
|
||||
# incremented and the bot will be wedged.
|
||||
logging.info("Saving state to " + chunk_file)
|
||||
try:
|
||||
f = open(chunk_file, "w")
|
||||
chunk_num += 1
|
||||
f.write("%d" % chunk_num)
|
||||
f.close()
|
||||
except IOError, (errno, strerror):
|
||||
logging.error("error writing to file %s (%d, %s)" % (chunk_file, errno,
|
||||
strerror))
|
||||
# Since we're running small chunks of the layout tests, it's important to
|
||||
# mark the ones that have errors in them. These won't be visible in the
|
||||
# summary list for long, but will be useful for someone reviewing this bot.
|
||||
return self.TestLayoutChunk(chunk_num, chunk_size)
|
||||
|
||||
# The known list of tests.
|
||||
# Recognise the original abbreviations as well as full executable names.
|
||||
_test_list = {
|
||||
"cmdline" : RunCmdLine,
|
||||
"addressinput": TestAddressInput,
|
||||
"libaddressinput_unittests": TestAddressInput,
|
||||
"accessibility": TestAccessibility,
|
||||
"angle": TestAngle, "angle_unittests": TestAngle,
|
||||
"app_list": TestAppList, "app_list_unittests": TestAppList,
|
||||
"ash": TestAsh, "ash_unittests": TestAsh,
|
||||
"aura": TestAura, "aura_unittests": TestAura,
|
||||
"base": TestBase, "base_unittests": TestBase,
|
||||
"blink_heap": TestBlinkHeap,
|
||||
"blink_platform": TestBlinkPlatform,
|
||||
"browser": TestBrowser, "browser_tests": TestBrowser,
|
||||
"cacheinvalidation": TestCacheInvalidation,
|
||||
"cacheinvalidation_unittests": TestCacheInvalidation,
|
||||
"cast": TestCast, "cast_unittests": TestCast,
|
||||
"cc": TestCC, "cc_unittests": TestCC,
|
||||
"chrome_app": TestChromeApp,
|
||||
"chrome_elf": TestChromeElf,
|
||||
"chromedriver": TestChromeDriver,
|
||||
"chromeos": TestChromeOS, "chromeos_unittests": TestChromeOS,
|
||||
"components": TestComponents,"components_unittests": TestComponents,
|
||||
"compositor": TestCompositor,"compositor_unittests": TestCompositor,
|
||||
"content": TestContent, "content_unittests": TestContent,
|
||||
"content_browsertests": TestContentBrowser,
|
||||
"courgette": TestCourgette, "courgette_unittests": TestCourgette,
|
||||
"crypto": TestCrypto, "crypto_unittests": TestCrypto,
|
||||
"device": TestDevice, "device_unittests": TestDevice,
|
||||
"display": TestDisplay, "display_unittests": TestDisplay,
|
||||
"events": TestEvents, "events_unittests": TestEvents,
|
||||
"extensions": TestExtensions, "extensions_unittests": TestExtensions,
|
||||
"ffmpeg_regression_tests": TestFFmpegRegressions,
|
||||
"gcm": TestGCM, "gcm_unit_tests": TestGCM,
|
||||
"gin": TestGin, "gin_unittests": TestGin,
|
||||
"gfx": TestGfx, "gfx_unittests": TestGfx,
|
||||
"google_apis": TestGoogleApis,
|
||||
"gpu": TestGPU, "gpu_unittests": TestGPU,
|
||||
"ipc": TestIpc, "ipc_tests": TestIpc,
|
||||
"installer_util": TestInstallerUtil,
|
||||
"installer_util_unittests": TestInstallerUtil,
|
||||
"install_static_unittests": TestInstallStatic,
|
||||
"interactive_ui": TestInteractiveUI,
|
||||
"jingle": TestJingle, "jingle_unittests": TestJingle,
|
||||
"keyboard": TestKeyboard, "keyboard_unittests": TestKeyboard,
|
||||
"latency": TestLatency, "latency_unittests": TestLatency,
|
||||
"layout": TestLayout, "layout_tests": TestLayout,
|
||||
"media": TestMedia, "media_unittests": TestMedia,
|
||||
"message_center": TestMessageCenter,
|
||||
"message_center_unittests" : TestMessageCenter,
|
||||
"midi": TestMidi, "midi_unittests": TestMidi,
|
||||
"mojo_common": TestMojoCommon,
|
||||
"mojo_common_unittests": TestMojoCommon,
|
||||
"mojo_system": TestMojoSystem,
|
||||
"mojo_system_unittests": TestMojoSystem,
|
||||
"mojo_public_system": TestMojoPublicSystem,
|
||||
"mojo_public_system_unittests": TestMojoPublicSystem,
|
||||
"mojo_public_bindings": TestMojoPublicBindings,
|
||||
"mojo_public_bindings_unittests": TestMojoPublicBindings,
|
||||
"mojo_public_sysperf": TestMojoPublicSysPerf,
|
||||
"net": TestNet, "net_unittests": TestNet,
|
||||
"net_perf": TestNetPerf, "net_perftests": TestNetPerf,
|
||||
"phonenumber": TestPhoneNumber,
|
||||
"libphonenumber_unittests": TestPhoneNumber,
|
||||
"ppapi": TestPPAPI, "ppapi_unittests": TestPPAPI,
|
||||
"printing": TestPrinting, "printing_unittests": TestPrinting,
|
||||
"remoting": TestRemoting, "remoting_unittests": TestRemoting,
|
||||
"sandbox": TestLinuxSandbox, "sandbox_linux_unittests": TestLinuxSandbox,
|
||||
"skia": TestSkia, "skia_unittests": TestSkia,
|
||||
"sql": TestSql, "sql_unittests": TestSql,
|
||||
"storage": TestStorage, "storage_unittests": TestStorage,
|
||||
"sync_integration_tests": TestSyncIntegration,
|
||||
"sync_integration": TestSyncIntegration,
|
||||
"ui_base_unit": TestUIBaseUnit, "ui_base_unittests": TestUIBaseUnit,
|
||||
"ui_chromeos": TestUIChromeOS, "ui_chromeos_unittests": TestUIChromeOS,
|
||||
"unit": TestUnit, "unit_tests": TestUnit,
|
||||
"url": TestURL, "url_unittests": TestURL,
|
||||
"views": TestViews, "views_unittests": TestViews,
|
||||
"webkit": TestLayout,
|
||||
}
|
||||
|
||||
|
||||
def _main():
|
||||
parser = optparse.OptionParser("usage: %prog -b <dir> -t <test> "
|
||||
"[-t <test> ...]")
|
||||
|
||||
parser.add_option("--help-tests", dest="help_tests", action="store_true",
|
||||
default=False, help="List all available tests")
|
||||
parser.add_option("-b", "--build-dir",
|
||||
help="the location of the compiler output")
|
||||
parser.add_option("--target", help="Debug or Release")
|
||||
parser.add_option("-t", "--test", action="append", default=[],
|
||||
help="which test to run, supports test:gtest_filter format "
|
||||
"as well.")
|
||||
parser.add_option("--baseline", action="store_true", default=False,
|
||||
help="generate baseline data instead of validating")
|
||||
parser.add_option("-f", "--force", action="store_true", default=False,
|
||||
help="run a broken test anyway")
|
||||
parser.add_option("--gtest_filter",
|
||||
help="additional arguments to --gtest_filter")
|
||||
parser.add_option("--gtest_repeat", help="argument for --gtest_repeat")
|
||||
parser.add_option("--gtest_shuffle", action="store_true", default=False,
|
||||
help="Randomize tests' orders on every iteration.")
|
||||
parser.add_option("--gtest_break_on_failure", action="store_true",
|
||||
default=False,
|
||||
help="Drop in to debugger on assertion failure. Also "
|
||||
"useful for forcing tests to exit with a stack dump "
|
||||
"on the first assertion failure when running with "
|
||||
"--gtest_repeat=-1")
|
||||
parser.add_option("-v", "--verbose", action="store_true", default=False,
|
||||
help="verbose output - enable debug log messages")
|
||||
parser.add_option("--tool", dest="valgrind_tool", default="memcheck",
|
||||
help="specify a valgrind tool to run the tests under")
|
||||
parser.add_option("--tool_flags", dest="valgrind_tool_flags", default="",
|
||||
help="specify custom flags for the selected valgrind tool")
|
||||
parser.add_option("--keep_logs", action="store_true", default=False,
|
||||
help="store memory tool logs in the <tool>.logs directory "
|
||||
"instead of /tmp.\nThis can be useful for tool "
|
||||
"developers/maintainers.\nPlease note that the <tool>"
|
||||
".logs directory will be clobbered on tool startup.")
|
||||
parser.add_option("-n", "--num_tests", type="int",
|
||||
default=ChromeTests.LAYOUT_TESTS_DEFAULT_CHUNK_SIZE,
|
||||
help="for layout tests: # of subtests per run. 0 for all.")
|
||||
parser.add_option("--test-launcher-bot-mode", action="store_true",
|
||||
help="run the tests with --test-launcher-bot-mode")
|
||||
parser.add_option("--test-launcher-total-shards", type=int,
|
||||
help="run the tests with --test-launcher-total-shards")
|
||||
parser.add_option("--test-launcher-shard-index", type=int,
|
||||
help="run the tests with --test-launcher-shard-index")
|
||||
parser.add_option("--drmemory_ops",
|
||||
help="extra options passed to Dr. Memory")
|
||||
|
||||
options, args = parser.parse_args()
|
||||
|
||||
# Bake target into build_dir.
|
||||
if options.target and options.build_dir:
|
||||
assert (options.target !=
|
||||
os.path.basename(os.path.dirname(options.build_dir)))
|
||||
options.build_dir = os.path.join(os.path.abspath(options.build_dir),
|
||||
options.target)
|
||||
|
||||
if options.verbose:
|
||||
logging_utils.config_root(logging.DEBUG)
|
||||
else:
|
||||
logging_utils.config_root()
|
||||
|
||||
if options.help_tests:
|
||||
ChromeTests.ShowTests()
|
||||
return 0
|
||||
|
||||
if not options.test:
|
||||
parser.error("--test not specified")
|
||||
|
||||
if len(options.test) != 1 and options.gtest_filter:
|
||||
parser.error("--gtest_filter and multiple tests don't make sense together")
|
||||
|
||||
BROKEN_TESTS = {
|
||||
'drmemory_light': [
|
||||
'addressinput',
|
||||
'aura',
|
||||
'base_unittests',
|
||||
'cc',
|
||||
'components', # x64 only?
|
||||
'content',
|
||||
'gfx',
|
||||
'mojo_public_bindings',
|
||||
],
|
||||
'drmemory_full': [
|
||||
'addressinput',
|
||||
'aura',
|
||||
'base_unittests',
|
||||
'blink_heap',
|
||||
'blink_platform',
|
||||
'browser_tests',
|
||||
'cast',
|
||||
'cc',
|
||||
'chromedriver',
|
||||
'compositor',
|
||||
'content',
|
||||
'content_browsertests',
|
||||
'device',
|
||||
'events',
|
||||
'extensions',
|
||||
'gfx',
|
||||
'google_apis',
|
||||
'gpu',
|
||||
'ipc_tests',
|
||||
'jingle',
|
||||
'keyboard',
|
||||
'media',
|
||||
'midi',
|
||||
'mojo_common',
|
||||
'mojo_public_bindings',
|
||||
'mojo_public_sysperf',
|
||||
'mojo_public_system',
|
||||
'mojo_system',
|
||||
'net',
|
||||
'remoting',
|
||||
'unit',
|
||||
'url',
|
||||
],
|
||||
}
|
||||
|
||||
for t in options.test:
|
||||
if t in BROKEN_TESTS[options.valgrind_tool] and not options.force:
|
||||
logging.info("Skipping broken %s test %s -- see crbug.com/633693" %
|
||||
(options.valgrind_tool, t))
|
||||
return 0
|
||||
|
||||
tests = ChromeTests(options, args, t)
|
||||
ret = tests.Run()
|
||||
if ret: return ret
|
||||
return 0
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
sys.exit(_main())
|
|
@ -1,94 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license
|
||||
# that can be found in the LICENSE file in the root of the source
|
||||
# tree. An additional intellectual property rights grant can be found
|
||||
# in the file PATENTS. All contributing project authors may
|
||||
# be found in the AUTHORS file in the root of the source tree.
|
||||
|
||||
# Set up some paths and re-direct the arguments to chrome_tests.py
|
||||
|
||||
export THISDIR=`dirname $0`
|
||||
ARGV_COPY="$@"
|
||||
|
||||
# We need to set CHROME_VALGRIND iff using Memcheck:
|
||||
# tools/valgrind/chrome_tests.sh --tool memcheck
|
||||
# or
|
||||
# tools/valgrind/chrome_tests.sh --tool=memcheck
|
||||
tool="memcheck" # Default to memcheck.
|
||||
while (( "$#" ))
|
||||
do
|
||||
if [[ "$1" == "--tool" ]]
|
||||
then
|
||||
tool="$2"
|
||||
shift
|
||||
elif [[ "$1" =~ --tool=(.*) ]]
|
||||
then
|
||||
tool="${BASH_REMATCH[1]}"
|
||||
fi
|
||||
shift
|
||||
done
|
||||
|
||||
NEEDS_VALGRIND=0
|
||||
NEEDS_DRMEMORY=0
|
||||
|
||||
case "$tool" in
|
||||
"memcheck")
|
||||
NEEDS_VALGRIND=1
|
||||
;;
|
||||
"drmemory" | "drmemory_light" | "drmemory_full" | "drmemory_pattern")
|
||||
NEEDS_DRMEMORY=1
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ "$NEEDS_VALGRIND" == "1" ]
|
||||
then
|
||||
export CHROME_VALGRIND=`sh $THISDIR/locate_valgrind.sh`
|
||||
if [ "$CHROME_VALGRIND" = "" ]
|
||||
then
|
||||
# locate_valgrind.sh failed
|
||||
exit 1
|
||||
fi
|
||||
echo "Using valgrind binaries from ${CHROME_VALGRIND}"
|
||||
|
||||
PATH="${CHROME_VALGRIND}/bin:$PATH"
|
||||
# We need to set these variables to override default lib paths hard-coded into
|
||||
# Valgrind binary.
|
||||
export VALGRIND_LIB="$CHROME_VALGRIND/lib/valgrind"
|
||||
export VALGRIND_LIB_INNER="$CHROME_VALGRIND/lib/valgrind"
|
||||
|
||||
# Clean up some /tmp directories that might be stale due to interrupted
|
||||
# chrome_tests.py execution.
|
||||
# FYI:
|
||||
# -mtime +1 <- only print files modified more than 24h ago,
|
||||
# -print0/-0 are needed to handle possible newlines in the filenames.
|
||||
echo "Cleanup /tmp from Valgrind stuff"
|
||||
find /tmp -maxdepth 1 \(\
|
||||
-name "vgdb-pipe-*" -or -name "vg_logs_*" -or -name "valgrind.*" \
|
||||
\) -mtime +1 -print0 | xargs -0 rm -rf
|
||||
fi
|
||||
|
||||
if [ "$NEEDS_DRMEMORY" == "1" ]
|
||||
then
|
||||
if [ -z "$DRMEMORY_COMMAND" ]
|
||||
then
|
||||
DRMEMORY_PATH="$THISDIR/../../third_party/drmemory"
|
||||
DRMEMORY_SFX="$DRMEMORY_PATH/drmemory-windows-sfx.exe"
|
||||
if [ ! -f "$DRMEMORY_SFX" ]
|
||||
then
|
||||
echo "Can't find Dr. Memory executables."
|
||||
echo "See http://www.chromium.org/developers/how-tos/using-valgrind/dr-memory"
|
||||
echo "for the instructions on how to get them."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
chmod +x "$DRMEMORY_SFX" # Cygwin won't run it without +x.
|
||||
"$DRMEMORY_SFX" -o"$DRMEMORY_PATH/unpacked" -y
|
||||
export DRMEMORY_COMMAND="$DRMEMORY_PATH/unpacked/bin/drmemory.exe"
|
||||
fi
|
||||
fi
|
||||
|
||||
PYTHONPATH=$THISDIR/../python/google python \
|
||||
"$THISDIR/chrome_tests.py" $ARGV_COPY
|
|
@ -1,256 +0,0 @@
|
|||
# Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license
|
||||
# that can be found in the LICENSE file in the root of the source
|
||||
# tree. An additional intellectual property rights grant can be found
|
||||
# in the file PATENTS. All contributing project authors may
|
||||
# be found in the AUTHORS file in the root of the source tree.
|
||||
|
||||
import logging
|
||||
import platform
|
||||
import os
|
||||
import signal
|
||||
import subprocess
|
||||
import sys
|
||||
import time
|
||||
|
||||
|
||||
class NotImplementedError(Exception):
|
||||
pass
|
||||
|
||||
|
||||
class TimeoutError(Exception):
|
||||
pass
|
||||
|
||||
|
||||
def RunSubprocessInBackground(proc):
|
||||
"""Runs a subprocess in the background. Returns a handle to the process."""
|
||||
logging.info("running %s in the background" % " ".join(proc))
|
||||
return subprocess.Popen(proc)
|
||||
|
||||
|
||||
def RunSubprocess(proc, timeout=0):
|
||||
""" Runs a subprocess, until it finishes or |timeout| is exceeded and the
|
||||
process is killed with taskkill. A |timeout| <= 0 means no timeout.
|
||||
|
||||
Args:
|
||||
proc: list of process components (exe + args)
|
||||
timeout: how long to wait before killing, <= 0 means wait forever
|
||||
"""
|
||||
|
||||
logging.info("running %s, timeout %d sec" % (" ".join(proc), timeout))
|
||||
sys.stdout.flush()
|
||||
sys.stderr.flush()
|
||||
|
||||
# Manually read and print out stdout and stderr.
|
||||
# By default, the subprocess is supposed to inherit these from its parent,
|
||||
# however when run under buildbot, it seems unable to read data from a
|
||||
# grandchild process, so we have to read the child and print the data as if
|
||||
# it came from us for buildbot to read it. We're not sure why this is
|
||||
# necessary.
|
||||
# TODO(erikkay): should we buffer stderr and stdout separately?
|
||||
p = subprocess.Popen(proc, universal_newlines=True,
|
||||
bufsize=0, # unbuffered
|
||||
stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
||||
|
||||
logging.info("started subprocess")
|
||||
|
||||
did_timeout = False
|
||||
if timeout > 0:
|
||||
wait_until = time.time() + timeout
|
||||
while p.poll() is None and not did_timeout:
|
||||
# Have to use readline rather than readlines() or "for line in p.stdout:",
|
||||
# otherwise we get buffered even with bufsize=0.
|
||||
line = p.stdout.readline()
|
||||
while line and not did_timeout:
|
||||
sys.stdout.write(line)
|
||||
sys.stdout.flush()
|
||||
line = p.stdout.readline()
|
||||
if timeout > 0:
|
||||
did_timeout = time.time() > wait_until
|
||||
|
||||
if did_timeout:
|
||||
logging.info("process timed out")
|
||||
else:
|
||||
logging.info("process ended, did not time out")
|
||||
|
||||
if did_timeout:
|
||||
if IsWindows():
|
||||
subprocess.call(["taskkill", "/T", "/F", "/PID", str(p.pid)])
|
||||
else:
|
||||
# Does this kill all children, too?
|
||||
os.kill(p.pid, signal.SIGINT)
|
||||
logging.error("KILLED %d" % p.pid)
|
||||
# Give the process a chance to actually die before continuing
|
||||
# so that cleanup can happen safely.
|
||||
time.sleep(1.0)
|
||||
logging.error("TIMEOUT waiting for %s" % proc[0])
|
||||
raise TimeoutError(proc[0])
|
||||
else:
|
||||
for line in p.stdout:
|
||||
sys.stdout.write(line)
|
||||
if not IsMac(): # stdout flush fails on Mac
|
||||
logging.info("flushing stdout")
|
||||
sys.stdout.flush()
|
||||
|
||||
logging.info("collecting result code")
|
||||
result = p.poll()
|
||||
if result:
|
||||
logging.error("%s exited with non-zero result code %d" % (proc[0], result))
|
||||
return result
|
||||
|
||||
|
||||
def IsLinux():
|
||||
return sys.platform.startswith('linux')
|
||||
|
||||
|
||||
def IsMac():
|
||||
return sys.platform.startswith('darwin')
|
||||
|
||||
|
||||
def IsWindows():
|
||||
return sys.platform == 'cygwin' or sys.platform.startswith('win')
|
||||
|
||||
|
||||
def WindowsVersionName():
|
||||
"""Returns the name of the Windows version if it is known, or None.
|
||||
|
||||
Possible return values are: xp, vista, 7, 8, or None
|
||||
"""
|
||||
if sys.platform == 'cygwin':
|
||||
# Windows version number is hiding in system name. Looks like:
|
||||
# CYGWIN_NT-6.1-WOW64
|
||||
try:
|
||||
version_str = platform.uname()[0].split('-')[1]
|
||||
except:
|
||||
return None
|
||||
elif sys.platform.startswith('win'):
|
||||
# Normal Windows version string. Mine: 6.1.7601
|
||||
version_str = platform.version()
|
||||
else:
|
||||
return None
|
||||
|
||||
parts = version_str.split('.')
|
||||
try:
|
||||
major = int(parts[0])
|
||||
minor = int(parts[1])
|
||||
except:
|
||||
return None # Can't parse, unknown version.
|
||||
|
||||
if major == 5:
|
||||
return 'xp'
|
||||
elif major == 6 and minor == 0:
|
||||
return 'vista'
|
||||
elif major == 6 and minor == 1:
|
||||
return '7'
|
||||
elif major == 6 and minor == 2:
|
||||
return '8' # Future proof. ;)
|
||||
return None
|
||||
|
||||
|
||||
def PlatformNames():
|
||||
"""Return an array of string to be used in paths for the platform
|
||||
(e.g. suppressions, gtest filters, ignore files etc.)
|
||||
The first element of the array describes the 'main' platform
|
||||
"""
|
||||
if IsLinux():
|
||||
return ['linux']
|
||||
if IsMac():
|
||||
return ['mac']
|
||||
if IsWindows():
|
||||
names = ['win32']
|
||||
version_name = WindowsVersionName()
|
||||
if version_name is not None:
|
||||
names.append('win-%s' % version_name)
|
||||
return names
|
||||
raise NotImplementedError('Unknown platform "%s".' % sys.platform)
|
||||
|
||||
|
||||
def PutEnvAndLog(env_name, env_value):
|
||||
os.putenv(env_name, env_value)
|
||||
logging.info('export %s=%s', env_name, env_value)
|
||||
|
||||
def BoringCallers(mangled, use_re_wildcards):
|
||||
"""Return a list of 'boring' function names (optinally mangled)
|
||||
with */? wildcards (optionally .*/.).
|
||||
Boring = we drop off the bottom of stack traces below such functions.
|
||||
"""
|
||||
|
||||
need_mangling = [
|
||||
# Don't show our testing framework:
|
||||
("testing::Test::Run", "_ZN7testing4Test3RunEv"),
|
||||
("testing::TestInfo::Run", "_ZN7testing8TestInfo3RunEv"),
|
||||
("testing::internal::Handle*ExceptionsInMethodIfSupported*",
|
||||
"_ZN7testing8internal3?Handle*ExceptionsInMethodIfSupported*"),
|
||||
|
||||
# Depend on scheduling:
|
||||
("MessageLoop::Run", "_ZN11MessageLoop3RunEv"),
|
||||
("MessageLoop::RunTask", "_ZN11MessageLoop7RunTask*"),
|
||||
("RunnableMethod*", "_ZN14RunnableMethod*"),
|
||||
("DispatchToMethod*", "_Z*16DispatchToMethod*"),
|
||||
("base::internal::Invoker*::DoInvoke*",
|
||||
"_ZN4base8internal8Invoker*DoInvoke*"), # Invoker{1,2,3}
|
||||
("base::internal::RunnableAdapter*::Run*",
|
||||
"_ZN4base8internal15RunnableAdapter*Run*"),
|
||||
]
|
||||
|
||||
ret = []
|
||||
for pair in need_mangling:
|
||||
ret.append(pair[1 if mangled else 0])
|
||||
|
||||
ret += [
|
||||
# Also don't show the internals of libc/pthread.
|
||||
"start_thread",
|
||||
"main",
|
||||
"BaseThreadInitThunk",
|
||||
]
|
||||
|
||||
if use_re_wildcards:
|
||||
for i in range(0, len(ret)):
|
||||
ret[i] = ret[i].replace('*', '.*').replace('?', '.')
|
||||
|
||||
return ret
|
||||
|
||||
def NormalizeWindowsPath(path):
|
||||
"""If we're using Cygwin Python, turn the path into a Windows path.
|
||||
|
||||
Don't turn forward slashes into backslashes for easier copy-pasting and
|
||||
escaping.
|
||||
|
||||
TODO(rnk): If we ever want to cut out the subprocess invocation, we can use
|
||||
_winreg to get the root Cygwin directory from the registry key:
|
||||
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\setup\rootdir.
|
||||
"""
|
||||
if sys.platform.startswith("cygwin"):
|
||||
p = subprocess.Popen(["cygpath", "-m", path],
|
||||
stdout=subprocess.PIPE,
|
||||
stderr=subprocess.PIPE)
|
||||
(out, err) = p.communicate()
|
||||
if err:
|
||||
logging.warning("WARNING: cygpath error: %s", err)
|
||||
return out.strip()
|
||||
else:
|
||||
return path
|
||||
|
||||
############################
|
||||
# Common output format code
|
||||
|
||||
def PrintUsedSuppressionsList(suppcounts):
|
||||
""" Prints out the list of used suppressions in a format common to all the
|
||||
memory tools. If the list is empty, prints nothing and returns False,
|
||||
otherwise True.
|
||||
|
||||
suppcounts: a dictionary of used suppression counts,
|
||||
Key -> name, Value -> count.
|
||||
"""
|
||||
if not suppcounts:
|
||||
return False
|
||||
|
||||
print "-----------------------------------------------------"
|
||||
print "Suppressions used:"
|
||||
print " count name"
|
||||
for (name, count) in sorted(suppcounts.items(), key=lambda (k,v): (v,k)):
|
||||
print "%7d %s" % (count, name)
|
||||
print "-----------------------------------------------------"
|
||||
sys.stdout.flush()
|
||||
return True
|
|
@ -1,91 +0,0 @@
|
|||
# Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license
|
||||
# that can be found in the LICENSE file in the root of the source
|
||||
# tree. An additional intellectual property rights grant can be found
|
||||
# in the file PATENTS. All contributing project authors may
|
||||
# be found in the AUTHORS file in the root of the source tree.
|
||||
|
||||
''' A bunch of helper functions for querying gdb.'''
|
||||
|
||||
import logging
|
||||
import os
|
||||
import re
|
||||
import tempfile
|
||||
|
||||
GDB_LINE_RE = re.compile(r'Line ([0-9]*) of "([^"]*)".*')
|
||||
|
||||
def _GdbOutputToFileLine(output_line):
|
||||
''' Parse the gdb output line, return a pair (file, line num) '''
|
||||
match = GDB_LINE_RE.match(output_line)
|
||||
if match:
|
||||
return match.groups()[1], match.groups()[0]
|
||||
else:
|
||||
return None
|
||||
|
||||
def ResolveAddressesWithinABinary(binary_name, load_address, address_list):
|
||||
''' For each address, return a pair (file, line num) '''
|
||||
commands = tempfile.NamedTemporaryFile()
|
||||
commands.write('add-symbol-file "%s" %s\n' % (binary_name, load_address))
|
||||
for addr in address_list:
|
||||
commands.write('info line *%s\n' % addr)
|
||||
commands.write('quit\n')
|
||||
commands.flush()
|
||||
gdb_commandline = 'gdb -batch -x %s 2>/dev/null' % commands.name
|
||||
gdb_pipe = os.popen(gdb_commandline)
|
||||
result = gdb_pipe.readlines()
|
||||
|
||||
address_count = 0
|
||||
ret = {}
|
||||
for line in result:
|
||||
if line.startswith('Line'):
|
||||
ret[address_list[address_count]] = _GdbOutputToFileLine(line)
|
||||
address_count += 1
|
||||
if line.startswith('No line'):
|
||||
ret[address_list[address_count]] = (None, None)
|
||||
address_count += 1
|
||||
gdb_pipe.close()
|
||||
commands.close()
|
||||
return ret
|
||||
|
||||
class AddressTable(object):
|
||||
''' Object to do batched line number lookup. '''
|
||||
def __init__(self):
|
||||
self._load_addresses = {}
|
||||
self._binaries = {}
|
||||
self._all_resolved = False
|
||||
|
||||
def AddBinaryAt(self, binary, load_address):
|
||||
''' Register a new shared library or executable. '''
|
||||
self._load_addresses[binary] = load_address
|
||||
|
||||
def Add(self, binary, address):
|
||||
''' Register a lookup request. '''
|
||||
if binary == '':
|
||||
logging.warn('adding address %s in empty binary?' % address)
|
||||
if binary in self._binaries:
|
||||
self._binaries[binary].append(address)
|
||||
else:
|
||||
self._binaries[binary] = [address]
|
||||
self._all_resolved = False
|
||||
|
||||
def ResolveAll(self):
|
||||
''' Carry out all lookup requests. '''
|
||||
self._translation = {}
|
||||
for binary in self._binaries.keys():
|
||||
if binary != '' and binary in self._load_addresses:
|
||||
load_address = self._load_addresses[binary]
|
||||
addr = ResolveAddressesWithinABinary(
|
||||
binary, load_address, self._binaries[binary])
|
||||
self._translation[binary] = addr
|
||||
self._all_resolved = True
|
||||
|
||||
def GetFileLine(self, binary, addr):
|
||||
''' Get the (filename, linenum) result of a previously-registered lookup
|
||||
request.
|
||||
'''
|
||||
if self._all_resolved:
|
||||
if binary in self._translation:
|
||||
if addr in self._translation[binary]:
|
||||
return self._translation[binary][addr]
|
||||
return (None, None)
|
|
@ -1,2 +0,0 @@
|
|||
*
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
# Tests that are too slow.
|
||||
AudioCodingModuleTest.TestAllCodecs*
|
||||
AudioCodingModuleTest.TestEncodeDecode*
|
||||
AudioCodingModuleTest.TestFEC*
|
||||
AudioCodingModuleTest.TestIsac*
|
||||
AudioCodingModuleTest.TwoWayCommunication*
|
||||
AudioCodingModuleTest.TestStereo*
|
||||
AudioCodingModuleTest.TestVADDTX*
|
||||
FecTest.FecTest
|
|
@ -1,2 +0,0 @@
|
|||
# Tests that are too slow.
|
||||
CommonFormats/AudioProcessingTest*
|
|
@ -1,3 +0,0 @@
|
|||
# Tests that are failing when run under memcheck.
|
||||
# https://code.google.com/p/webrtc/issues/detail?id=4387
|
||||
OrtcFactoryIntegrationTest.*
|
|
@ -1,7 +0,0 @@
|
|||
# Tests that are failing when run under memcheck.
|
||||
# https://code.google.com/p/webrtc/issues/detail?id=4387
|
||||
DtmfSenderTest.*
|
||||
PeerConnectionEndToEndTest*
|
||||
PeerConnectionIntegrationTest.*
|
||||
PeerConnectionInterfaceTest.*
|
||||
RTCStatsIntegrationTest.*
|
|
@ -1,11 +0,0 @@
|
|||
#TODO(wu): https://code.google.com/p/webrtc/issues/detail?id=2380
|
||||
WebRtcVideoMediaChannelTest.TwoStreamsSendAndUnsignalledRecv
|
||||
|
||||
#TODO(jiayl): https://code.google.com/p/webrtc/issues/detail?id=3492
|
||||
SctpDataMediaChannelTest.*
|
||||
|
||||
# TODO(pbos): https://code.google.com/p/webrtc/issues/detail?id=4963
|
||||
WebRtcVideoChannel2BaseTest.*
|
||||
|
||||
#TODO(honghaiz): https://bugs.chromium.org/p/webrtc/issues/detail?id=7421
|
||||
P2PTransportChannelMultihomedTest.TestContinualGatheringOnNewInterface
|
|
@ -1 +0,0 @@
|
|||
WebRtcVideoMediaChannelTest.AddRemoveCapturerMultipleSources
|
|
@ -1,8 +0,0 @@
|
|||
# TODO(wu): Reenable P2PTransportChannelTest after issue 2158 is resolved.
|
||||
P2PTransportChannelTest.*
|
||||
P2PTransportChannelSameNatTest.TestConesBehindSameCone
|
||||
PortTest.TestSendStunMessageAsIce
|
||||
PseudoTcpTest.TestSendBothUseLargeWindowScale
|
||||
# Issue 3447
|
||||
P2PTransportChannelMultihomedTest.TestFailover
|
||||
P2PTransportChannelMultihomedTest.TestDrain
|
|
@ -1,15 +0,0 @@
|
|||
ThreadTest.Release
|
||||
# TODO(wu): Reenable P2PTransportChannelTest after issue 2158 is resolved.
|
||||
P2PTransportChannelTest.*
|
||||
P2PTransportChannelSameNatTest.TestConesBehindSameCone
|
||||
PortTest.TestSendStunMessageAsIce
|
||||
PseudoTcpTest.TestSendBothUseLargeWindowScale
|
||||
# Issue 3447
|
||||
P2PTransportChannelMultihomedTest.TestFailover
|
||||
P2PTransportChannelMultihomedTest.TestDrain
|
||||
# Issue 4743
|
||||
PortAllocatorTest.TestDisableAllPorts
|
||||
PortAllocatorTest.TestGetAllPortsNoUdpSockets
|
||||
PortAllocatorTest.TestGetAllPortsNoUdpSocketsNoTcpListen
|
||||
# Issue 5981
|
||||
TurnPortTest.*
|
|
@ -1,18 +0,0 @@
|
|||
# Fails when run under memcheck
|
||||
EndToEndTest.CanSwitchToUseAllSsrcs
|
||||
EndToEndTest.SendsAndReceivesVP9
|
||||
TestWithNewVideoJitterBuffer/EndToEndTest.SendsAndReceivesH264/*
|
||||
VideoSendStreamTest.VP9FlexMode
|
||||
EndToEndTest.InitialProbing
|
||||
EndToEndTest.TriggerMidCallProbing
|
||||
# Times out due to using a real VP8 encoder.
|
||||
*EndToEndTest.VerifyHistogramStatsWithRed*
|
||||
|
||||
# https://bugs.chromium.org/p/webrtc/issues/detail?id=5134
|
||||
*EndToEndTest.AssignsTransportSequenceNumbers*
|
||||
|
||||
# https://bugs.chromium.org/p/webrtc/issues/detail?id=6886
|
||||
VideoSendStreamTest.RemoveOverheadFromBandwidth
|
||||
|
||||
# https://bugs.chromium.org/p/webrtc/issues/detail?id=7145
|
||||
*EndToEndTest.VerifyNackStats*
|
|
@ -1,8 +0,0 @@
|
|||
# Fails when run under memcheck
|
||||
# https://code.google.com/p/webrtc/issues/detail?id=4958
|
||||
PhysicalSocketTest.TestUdpReadyToSendIPv4
|
||||
PhysicalSocketTest.TestUdpIPv4
|
||||
PhysicalSocketTest.TestSocketRecvTimestampIPv4
|
||||
# Relies on actual CPU timing, so can be flaky on memcheck.
|
||||
CpuTimeTest.TwoThreads
|
||||
CpuTimeTest.Sleeping
|
|
@ -1,73 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license
|
||||
# that can be found in the LICENSE file in the root of the source
|
||||
# tree. An additional intellectual property rights grant can be found
|
||||
# in the file PATENTS. All contributing project authors may
|
||||
# be found in the AUTHORS file in the root of the source tree.
|
||||
|
||||
# Prints a path to Valgrind binaries to be used for Chromium.
|
||||
# Select the valgrind from third_party/valgrind by default,
|
||||
# but allow users to override this default without editing scripts and
|
||||
# without specifying a commandline option
|
||||
|
||||
export THISDIR=`dirname $0`
|
||||
|
||||
# User may use their own valgrind by giving its path with CHROME_VALGRIND env.
|
||||
if [ "$CHROME_VALGRIND" = "" ]
|
||||
then
|
||||
# Guess which binaries we should use by uname
|
||||
case "$(uname -a)" in
|
||||
*Linux*x86_64*)
|
||||
PLATFORM="linux_x64"
|
||||
;;
|
||||
*Linux*86*)
|
||||
PLATFORM="linux_x86"
|
||||
;;
|
||||
*Darwin*9.[678].[01]*i386*)
|
||||
# Didn't test other kernels.
|
||||
PLATFORM="mac"
|
||||
;;
|
||||
*Darwin*10.[0-9].[0-9]*i386*)
|
||||
PLATFORM="mac_10.6"
|
||||
;;
|
||||
*Darwin*10.[0-9].[0-9]*x86_64*)
|
||||
PLATFORM="mac_10.6"
|
||||
;;
|
||||
*Darwin*11.[0-9].[0-9]*x86_64*)
|
||||
PLATFORM="mac_10.7"
|
||||
;;
|
||||
*)
|
||||
(echo "Sorry, your platform is not supported:" &&
|
||||
uname -a
|
||||
echo
|
||||
echo "If you're on Mac OS X, please see http://crbug.com/441425") >&2
|
||||
exit 42
|
||||
esac
|
||||
|
||||
# The binaries should be in third_party/valgrind
|
||||
# (checked out from deps/third_party/valgrind/binaries).
|
||||
CHROME_VALGRIND="$THISDIR/../../third_party/valgrind/$PLATFORM"
|
||||
|
||||
# TODO(timurrrr): readlink -f is not present on Mac...
|
||||
if [ "$PLATFORM" != "mac" ] && \
|
||||
[ "$PLATFORM" != "mac_10.6" ] && \
|
||||
[ "$PLATFORM" != "mac_10.7" ]
|
||||
then
|
||||
# Get rid of all "../" dirs
|
||||
CHROME_VALGRIND=$(readlink -f $CHROME_VALGRIND)
|
||||
fi
|
||||
fi
|
||||
|
||||
if ! test -x $CHROME_VALGRIND/bin/valgrind
|
||||
then
|
||||
echo "Oops, could not find Valgrind binaries in your checkout." >&2
|
||||
echo "Please see" >&2
|
||||
echo " http://dev.chromium.org/developers/how-tos/using-valgrind/get-valgrind" >&2
|
||||
echo "for the instructions on how to download pre-built binaries." >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo $CHROME_VALGRIND
|
|
@ -1 +0,0 @@
|
|||
*
|
|
@ -1,404 +0,0 @@
|
|||
# This file is used in addition to the one already maintained in Chrome.
|
||||
# It acts as a place holder for future additions for WebRTC.
|
||||
# It must exist for the Python wrapper script to work properly.
|
||||
|
||||
# There are three kinds of suppressions in this file.
|
||||
# 1. third_party libraries
|
||||
# 2. webrtc stuff
|
||||
# 3. libjingle stuff (talk folder)
|
||||
#-----------------------------------------------------------------------
|
||||
|
||||
# third_party libraries
|
||||
|
||||
{
|
||||
libc_free_hitting_gce_vms
|
||||
Memcheck:Free
|
||||
fun:free
|
||||
fun:__libc_freeres
|
||||
fun:_vgnU_freeres
|
||||
...
|
||||
}
|
||||
{
|
||||
Ubuntu_Precise_Itoa_Optimized_Code
|
||||
Memcheck:Uninitialized
|
||||
fun:_itoa_word
|
||||
fun:vfprintf
|
||||
fun:vsnprintf
|
||||
fun:snprintf
|
||||
...
|
||||
}
|
||||
# See: https://bugs.chromium.org/p/webrtc/issues/detail?id=7973
|
||||
{
|
||||
libc_getaddrinfo_uninitialized
|
||||
Memcheck:Param
|
||||
sendmsg(mmsg[0].msg_hdr)
|
||||
fun:sendmmsg
|
||||
fun:__libc_res_nsend
|
||||
fun:__libc_res_nquery
|
||||
fun:__libc_res_nsearch
|
||||
fun:_nss_dns_gethostbyname4_r
|
||||
fun:gaih_inet
|
||||
fun:getaddrinfo
|
||||
...
|
||||
}
|
||||
|
||||
#-----------------------------------------------------------------------
|
||||
# webrtc stuff
|
||||
|
||||
{
|
||||
bug_6784
|
||||
Memcheck:Leak
|
||||
fun:_Znw*
|
||||
fun:_ZN3rtc10HttpServer16HandleConnectionEPNS_15StreamInterfaceE
|
||||
fun:_ZN3rtc12_GLOBAL__N_122CreateClientConnectionERNS_10HttpServerERNS0_17HttpServerMonitorEb
|
||||
fun:_ZN3rtc47HttpServer_SignalsCloseAfterForcedCloseAll_Test8TestBodyEv
|
||||
}
|
||||
{
|
||||
bug_6773
|
||||
Memcheck:Uninitialized
|
||||
fun:vfprintf
|
||||
fun:vsnprintf
|
||||
fun:snprintf
|
||||
...
|
||||
}
|
||||
{
|
||||
bug_3446
|
||||
Memcheck:Uninitialized
|
||||
fun:vp8cx_pick_filter_level_fast
|
||||
fun:vp8_loopfilter_frame
|
||||
fun:encode_frame_to_data_rate
|
||||
fun:vp8_get_compressed_data
|
||||
fun:vp8e_encode
|
||||
fun:vpx_codec_encode
|
||||
...
|
||||
fun:_ZN6webrtc4test18VideoProcessorImpl12ProcessFrameEi
|
||||
fun:_ZN6webrtc29VideoProcessorIntegrationTest22ProcessFramesAndVerifyENS_14QualityMetricsENS_11RateProfileENS_15CodecConfigParsEPNS_18RateControlMetricsE
|
||||
fun:_ZN6webrtc70VideoProcessorIntegrationTest_ProcessNoLossSpatialResizeFrameDrop_Test8TestBodyEv
|
||||
}
|
||||
{
|
||||
bug_1976_1
|
||||
Memcheck:Unaddressable
|
||||
fun:pthread_mutex_unlock
|
||||
fun:_ZN9rtc15CriticalSection5LeaveEv
|
||||
fun:_ZN9rtc9CritScopeD1Ev
|
||||
...
|
||||
fun:_ZN9rtc6Thread15ProcessMessagesEi
|
||||
fun:_ZN9rtc6Thread3RunEv
|
||||
fun:_ZN9rtc6Thread6PreRunEPv
|
||||
}
|
||||
{
|
||||
bug_2100_3
|
||||
Memcheck:Uninitialized
|
||||
fun:tls1_enc
|
||||
fun:ssl3_get_record
|
||||
fun:ssl3_read_bytes
|
||||
fun:ssl3_read_internal
|
||||
fun:ssl3_read
|
||||
fun:SSL_read
|
||||
fun:_ZN9rtc20OpenSSLStreamAdapter4ReadEPvmPmPi
|
||||
...
|
||||
}
|
||||
{
|
||||
bug_2100_4
|
||||
Memcheck:Uninitialized
|
||||
fun:_ZN7testing8internal11CmpHelperEQIjhEENS_15AssertionResultEPKcS4_RKT_RKT0_
|
||||
fun:_ZN7testing8internal8EqHelperILb0EE7CompareIjhEENS_15AssertionResultEPKcS6_RKT_RKT0_
|
||||
fun:_ZN24SSLStreamAdapterTestDTLS8ReadDataEPN9rtc15StreamInterfaceE
|
||||
...
|
||||
}
|
||||
{
|
||||
bug_2100_5
|
||||
Memcheck:Uninitialized
|
||||
fun:dtls1_process_record
|
||||
fun:dtls1_get_record
|
||||
fun:dtls1_read_bytes
|
||||
fun:ssl3_read_internal
|
||||
fun:ssl3_read
|
||||
fun:SSL_read
|
||||
fun:_ZN9rtc20OpenSSLStreamAdapter4ReadEPvmPmPi
|
||||
...
|
||||
}
|
||||
{
|
||||
BIO_new_mem_buf_1
|
||||
Memcheck:Leak
|
||||
fun:malloc
|
||||
fun:default_malloc_ex
|
||||
fun:CRYPTO_malloc
|
||||
fun:BUF_MEM_new
|
||||
fun:mem_new
|
||||
fun:BIO_set
|
||||
fun:BIO_new
|
||||
fun:BIO_new_mem_buf
|
||||
fun:_ZN9rtc18OpenSSLCertificate13FromPEMStringERKSs
|
||||
...
|
||||
}
|
||||
{
|
||||
BIO_new_mem_buf_2
|
||||
Memcheck:Leak
|
||||
fun:malloc
|
||||
fun:default_malloc_ex
|
||||
fun:CRYPTO_malloc
|
||||
fun:BUF_MEM_new
|
||||
fun:mem_new
|
||||
fun:BIO_set
|
||||
fun:BIO_new
|
||||
fun:BIO_new_mem_buf
|
||||
fun:_ZN9rtc15OpenSSLIdentity14FromPEMStringsERKSsS2_
|
||||
}
|
||||
{
|
||||
SignalsCloseAfterForcedCloseAll
|
||||
Memcheck:Leak
|
||||
fun:_Znw*
|
||||
fun:_ZN3rtc10HttpServer10Connection12BeginProcessEPNS_15StreamInterfaceE
|
||||
...
|
||||
}
|
||||
{
|
||||
SignalsCloseAfterForcedCloseAll2
|
||||
Memcheck:Leak
|
||||
fun:_Znw*
|
||||
fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsSsEEE8allocateEmPKv
|
||||
fun:_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_EN3rtc5ilessESaIS2_EE11_M_get_nodeEv
|
||||
fun:_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_EN3rtc5ilessESaIS2_EE14_M_create_nodeIJS2_EEEPSt13_Rb_tree_nodeIS2_EDpOT_
|
||||
fun:_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_EN3rtc5ilessESaIS2_EE10_M_insert_IS2_EESt17_Rb_tree_iteratorIS2_EPKSt18_Rb_tree_node_baseSE_OT_
|
||||
fun:_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_EN3rtc5ilessESaIS2_EE15_M_insert_equalIS2_EESt17_Rb_tree_iteratorIS2_EOT_
|
||||
fun:_ZNSt8multimapISsSsN3rtc5ilessESaISt4pairIKSsSsEEE6insertIS4_vEESt17_Rb_tree_iteratorIS4_EOT_
|
||||
fun:_ZN3rtc8HttpData12changeHeaderERKSsS2_NS0_13HeaderCombineE
|
||||
fun:_ZN3rtc8HttpData9setHeaderERKSsS2_b
|
||||
fun:_ZN3rtc8HttpData9setHeaderENS_10HttpHeaderERKSsb
|
||||
...
|
||||
}
|
||||
{
|
||||
DoNotDeleteTask2
|
||||
Memcheck:Leak
|
||||
fun:_Znw*
|
||||
...
|
||||
fun:_ZN3rtc41unstarted_task_test_DoNotDeleteTask2_Test8TestBodyEv
|
||||
}
|
||||
{
|
||||
bug_329_1
|
||||
Memcheck:Unaddressable
|
||||
fun:I422ToARGBRow_SSSE3
|
||||
fun:I420ToARGB
|
||||
fun:ConvertFromI420
|
||||
fun:_ZN6webrtc15ConvertFromI420EPKhiNS_9VideoTypeEiiiPh
|
||||
fun:_ZN6webrtc15VideoX11Channel12DeliverFrameEPhij
|
||||
fun:_ZN6webrtc15VideoX11Channel11RenderFrameEjRNS_10VideoFrameE
|
||||
fun:_ZN6webrtc19IncomingVideoStream26IncomingVideoStreamProcessEv
|
||||
fun:_ZN6webrtc19IncomingVideoStream28IncomingVideoStreamThreadFunEPv
|
||||
fun:_ZN6webrtc11ThreadPosix3RunEv
|
||||
fun:StartThread
|
||||
}
|
||||
|
||||
{
|
||||
bug_329_3
|
||||
Memcheck:Unaddressable
|
||||
fun:I422ToARGBRow_SSSE3
|
||||
fun:I420ToARGB
|
||||
fun:ConvertFromI420
|
||||
fun:_ZN6webrtc15ConvertFromI420EPKhiNS_9VideoTypeEiiiPh
|
||||
fun:_ZN6webrtc15VideoX11Channel12DeliverFrameEPhij
|
||||
fun:_ZN6webrtc15VideoX11Channel11RenderFrameEjRNS_10VideoFrameE
|
||||
fun:_ZN6webrtc19IncomingVideoStream26IncomingVideoStreamProcessEv
|
||||
fun:_ZN6webrtc19IncomingVideoStream28IncomingVideoStreamThreadFunEPv
|
||||
fun:_ZN6webrtc11ThreadPosix3RunEv
|
||||
fun:StartThread
|
||||
}
|
||||
|
||||
{
|
||||
bug_329_7
|
||||
Memcheck:Unaddressable
|
||||
fun:I422ToARGBRow_SSSE3
|
||||
fun:I420ToARGB
|
||||
fun:ConvertFromI420
|
||||
fun:_ZN6webrtc15ConvertFromI420ERKNS_10VideoFrameEiNS_9VideoTypeEiPh
|
||||
fun:_ZN6webrtc15VideoX11Channel12DeliverFrameERKNS_10VideoFrameE
|
||||
fun:_ZN6webrtc15VideoX11Channel11RenderFrameEjRNS_10VideoFrameE
|
||||
fun:_ZN6webrtc19IncomingVideoStream26IncomingVideoStreamProcessEv
|
||||
fun:_ZN6webrtc19IncomingVideoStream28IncomingVideoStreamThreadFunEPv
|
||||
fun:_ZN6webrtc11ThreadPosix3RunEv
|
||||
fun:StartThread
|
||||
}
|
||||
|
||||
{
|
||||
bug_329_8
|
||||
Memcheck:Unaddressable
|
||||
fun:I422ToARGBRow_SSSE3
|
||||
fun:I420ToARGB
|
||||
fun:ConvertFromI420
|
||||
fun:_ZN6webrtc15ConvertFromI420ERKNS_10VideoFrameEiNS_9VideoTypeEiPh
|
||||
fun:_ZN6webrtc15VideoX11Channel12DeliverFrameERKNS_10VideoFrameE
|
||||
fun:_ZN6webrtc15VideoX11Channel11RenderFrameEjRNS_10VideoFrameE
|
||||
fun:_ZN6webrtc19IncomingVideoStream26IncomingVideoStreamProcessEv
|
||||
fun:_ZN6webrtc19IncomingVideoStream28IncomingVideoStreamThreadFunEPv
|
||||
fun:_ZN6webrtc11ThreadPosix3RunEv
|
||||
fun:StartThread
|
||||
}
|
||||
|
||||
{
|
||||
bug_898_1
|
||||
Memcheck:Uninitialized
|
||||
...
|
||||
fun:_ZN16FakeMediaProcess7ProcessEiN6webrtc15ProcessingTypesEPsiib
|
||||
...
|
||||
fun:_ZN6webrtc21AudioDeviceLinuxPulse17PlayThreadProcessEv
|
||||
fun:_ZN6webrtc21AudioDeviceLinuxPulse14PlayThreadFuncEPv
|
||||
fun:_ZN6webrtc11ThreadPosix3RunEv
|
||||
fun:StartThread
|
||||
}
|
||||
|
||||
{
|
||||
bug_898_2
|
||||
Memcheck:Uninitialized
|
||||
...
|
||||
fun:_ZN16FakeMediaProcess7ProcessEiN6webrtc15ProcessingTypesEPsiib
|
||||
...
|
||||
fun:_ZN6webrtc21AudioDeviceLinuxPulse16RecThreadProcessEv
|
||||
fun:_ZN6webrtc21AudioDeviceLinuxPulse13RecThreadFuncEPv
|
||||
fun:_ZN6webrtc11ThreadPosix3RunEv
|
||||
fun:StartThread
|
||||
}
|
||||
|
||||
{
|
||||
bug_891
|
||||
Memcheck:Unaddressable
|
||||
fun:XShmPutImage
|
||||
fun:_ZN6webrtc15VideoX11Channel12DeliverFrameEPhij
|
||||
fun:_ZN6webrtc15VideoX11Channel11RenderFrameEjRNS_10VideoFrameE
|
||||
fun:_ZN6webrtc19IncomingVideoStream26IncomingVideoStreamProcessEv
|
||||
fun:_ZN6webrtc19IncomingVideoStream28IncomingVideoStreamThreadFunEPv
|
||||
fun:_ZN6webrtc11ThreadPosix3RunEv
|
||||
fun:StartThread
|
||||
}
|
||||
|
||||
{
|
||||
ignore_common_benevolent_trace_library_errors
|
||||
Memcheck:Uninitialized
|
||||
...
|
||||
fun:vsnprintf
|
||||
fun:_ZN6webrtc5Trace3AddENS_10TraceLevelENS_11TraceModuleEiPKcz
|
||||
...
|
||||
}
|
||||
|
||||
{
|
||||
bug_270_1
|
||||
Memcheck:Uninitialized
|
||||
...
|
||||
fun:WebRtcNetEQ_RecOutInternal
|
||||
fun:WebRtcNetEQ_RecOut
|
||||
...
|
||||
}
|
||||
|
||||
{
|
||||
bug_270_2
|
||||
Memcheck:Uninitialized
|
||||
fun:WebRtcNetEQ_GetSpeechOutputType
|
||||
...
|
||||
}
|
||||
|
||||
|
||||
#-----------------------------------------------------------------------
|
||||
# libjingle stuff (talk folder)
|
||||
{
|
||||
bug_2056_1
|
||||
Memcheck:Leak
|
||||
fun:malloc
|
||||
fun:_dl_close_worker
|
||||
fun:_dl_close
|
||||
fun:_dl_catch_error
|
||||
fun:_dlerror_run
|
||||
fun:dlclose
|
||||
...
|
||||
fun:snd_device_name_hint
|
||||
fun:_ZNK6webrtc20AudioDeviceLinuxALSA14GetDevicesInfoEibiPci
|
||||
...
|
||||
}
|
||||
{
|
||||
bug_2100_1
|
||||
Memcheck:Uninitialized
|
||||
fun:_ZN7testing8internal11CmpHelperEQIiiEENS_15AssertionResultEPKcS4_RKT_RKT0_
|
||||
fun:_ZN7testing8internal8EqHelperILb1EE7CompareIiiEENS_15AssertionResultEPKcS6_RKT_RKT0_PNS0_8EnableIfIXntsrNS0_10is_pointerISA_EE5valueEE4typeE
|
||||
...
|
||||
}
|
||||
{
|
||||
bug_2100_2
|
||||
Memcheck:Uninitialized
|
||||
fun:bcmp
|
||||
fun:_ZN23SSLStreamAdapterTestTLS12TestTransferEi
|
||||
...
|
||||
}
|
||||
# failures which can't be reproduced locally
|
||||
{
|
||||
bug_2153_1
|
||||
Memcheck:Leak
|
||||
fun:calloc
|
||||
...
|
||||
fun:_ZN6webrtc26AudioMixerManagerLinuxALSA11OpenSpeakerEPc
|
||||
fun:_ZN6webrtc20AudioDeviceLinuxALSA11InitSpeakerEv
|
||||
...
|
||||
}
|
||||
{
|
||||
bug_2153_3
|
||||
Memcheck:Leak
|
||||
fun:calloc
|
||||
obj:*
|
||||
fun:_ZN6webrtc26AudioMixerManagerLinuxALSA14OpenMicrophoneEPc
|
||||
fun:_ZN6webrtc20AudioDeviceLinuxALSA14InitMicrophoneEv
|
||||
...
|
||||
}
|
||||
{
|
||||
bug_2263_1
|
||||
Memcheck:Uninitialized
|
||||
fun:_ZN14DtlsTestClient12VerifyPacketEPKcmPj
|
||||
...
|
||||
}
|
||||
{
|
||||
bug_3478
|
||||
Memcheck:Leak
|
||||
fun:_Znw*
|
||||
fun:_ZNK3rtc18FakeSSLCertificate12GetReferenceEv
|
||||
fun:_ZN3rtc18FakeSSLCertificate7DupCertES0_
|
||||
fun:_ZSt9transformIN9__gnu_cxx17__normal_iteratorIPKN3rtc18FakeSSLCertificateESt6vectorIS3_SaIS3_EEEENS1_IPPNS2_14SSLCertificateES6_ISB_SaISB_EEEEPFPS3_S3_EET0_T_SK_SJ_T1_
|
||||
fun:_ZNK3rtc18FakeSSLCertificate8GetChainEPPNS_12SSLCertChainE
|
||||
fun:_ZN6webrtc14StatsCollector21AddCertificateReportsEPKN3rtc14SSLCertificateE
|
||||
fun:_ZN6webrtc14StatsCollector18ExtractSessionInfoEv
|
||||
fun:_ZN6webrtc14StatsCollector11UpdateStatsENS_23PeerConnectionInterface16StatsOutputLevelE
|
||||
fun:_ZN12_GLOBAL__N_118StatsCollectorTest22TestCertificateReportsERKN3rtc18FakeSSLCertificateERKSt6vectorISsSaISsEES4_S9_
|
||||
fun:_ZN12_GLOBAL__N_156StatsCollectorTest_ChainedCertificateReportsCreated_Test8TestBodyEv
|
||||
}
|
||||
{
|
||||
bug_5983
|
||||
Memcheck:Uninitialized
|
||||
fun:_ZN6webrtc11DataChannel4InitERKNS_23InternalDataChannelInitE
|
||||
...
|
||||
}
|
||||
{
|
||||
bug_5984
|
||||
Memcheck:Uninitialized
|
||||
fun:_ZN6webrtc15GainControlImpl19ProcessCaptureAudioEPNS_11AudioBufferEb
|
||||
...
|
||||
}
|
||||
{
|
||||
bug_5987
|
||||
Memcheck:Leak
|
||||
fun:_Znw*
|
||||
fun:_ZN6webrtc51AudioEncoderCopyRedDeathTest_NullSpeechEncoder_Test8TestBodyEv
|
||||
}
|
||||
{
|
||||
bug_5988
|
||||
Memcheck:Leak
|
||||
fun:_Znw*
|
||||
fun:_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_EN3rtc5ilessESaIS2_EE15_M_insert_equalIS2_EESt17_Rb_tree_iteratorIS2_EOT_
|
||||
fun:_ZN3rtc8HttpData12changeHeaderERKSsS2_NS0_13HeaderCombineE
|
||||
...
|
||||
fun:_ZN3rtc47HttpServer_SignalsCloseAfterForcedCloseAll_Test8TestBodyEv
|
||||
}
|
||||
{
|
||||
bug_687087
|
||||
Memcheck:Uninitialized
|
||||
fun:vfprintf
|
||||
fun:vsnprintf
|
||||
fun:snprintf
|
||||
...
|
||||
fun:_ZNK6webrtc11MockRtpRtcp11FlexfecSsrcEv
|
||||
...
|
||||
}
|
|
@ -1,11 +0,0 @@
|
|||
# Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license
|
||||
# that can be found in the LICENSE file in the root of the source
|
||||
# tree. An additional intellectual property rights grant can be found
|
||||
# in the file PATENTS. All contributing project authors may
|
||||
# be found in the AUTHORS file in the root of the source tree.
|
||||
|
||||
# This file is used in addition to the one already maintained in Chrome.
|
||||
# It acts as a place holder for future additions for WebRTC.
|
||||
# It must exist for the Python wrapper script to work properly.
|
|
@ -1,11 +0,0 @@
|
|||
# Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license
|
||||
# that can be found in the LICENSE file in the root of the source
|
||||
# tree. An additional intellectual property rights grant can be found
|
||||
# in the file PATENTS. All contributing project authors may
|
||||
# be found in the AUTHORS file in the root of the source tree.
|
||||
|
||||
# This file is used in addition to the one already maintained in Chrome.
|
||||
# It acts as a place holder for future additions for WebRTC.
|
||||
# It must exist for the Python wrapper script to work properly.
|
|
@ -1,644 +0,0 @@
|
|||
#!/usr/bin/env python
|
||||
# Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license
|
||||
# that can be found in the LICENSE file in the root of the source
|
||||
# tree. An additional intellectual property rights grant can be found
|
||||
# in the file PATENTS. All contributing project authors may
|
||||
# be found in the AUTHORS file in the root of the source tree.
|
||||
|
||||
# memcheck_analyze.py
|
||||
|
||||
''' Given a valgrind XML file, parses errors and uniques them.'''
|
||||
|
||||
import gdb_helper
|
||||
|
||||
from collections import defaultdict
|
||||
import hashlib
|
||||
import logging
|
||||
import optparse
|
||||
import os
|
||||
import re
|
||||
import subprocess
|
||||
import sys
|
||||
import time
|
||||
from xml.dom.minidom import parse
|
||||
from xml.parsers.expat import ExpatError
|
||||
|
||||
import common
|
||||
|
||||
# Global symbol table (yuck)
|
||||
TheAddressTable = None
|
||||
|
||||
# These are regexps that define functions (using C++ mangled names)
|
||||
# we don't want to see in stack traces while pretty printing
|
||||
# or generating suppressions.
|
||||
# Just stop printing the stack/suppression frames when the current one
|
||||
# matches any of these.
|
||||
_BORING_CALLERS = common.BoringCallers(mangled=True, use_re_wildcards=True)
|
||||
|
||||
def getTextOf(top_node, name):
|
||||
''' Returns all text in all DOM nodes with a certain |name| that are children
|
||||
of |top_node|.
|
||||
'''
|
||||
|
||||
text = ""
|
||||
for nodes_named in top_node.getElementsByTagName(name):
|
||||
text += "".join([node.data for node in nodes_named.childNodes
|
||||
if node.nodeType == node.TEXT_NODE])
|
||||
return text
|
||||
|
||||
def getCDATAOf(top_node, name):
|
||||
''' Returns all CDATA in all DOM nodes with a certain |name| that are children
|
||||
of |top_node|.
|
||||
'''
|
||||
|
||||
text = ""
|
||||
for nodes_named in top_node.getElementsByTagName(name):
|
||||
text += "".join([node.data for node in nodes_named.childNodes
|
||||
if node.nodeType == node.CDATA_SECTION_NODE])
|
||||
if (text == ""):
|
||||
return None
|
||||
return text
|
||||
|
||||
def shortenFilePath(source_dir, directory):
|
||||
'''Returns a string with the string prefix |source_dir| removed from
|
||||
|directory|.'''
|
||||
prefixes_to_cut = ["build/src/", "valgrind/coregrind/", "out/Release/../../"]
|
||||
|
||||
if source_dir:
|
||||
prefixes_to_cut.append(source_dir)
|
||||
|
||||
for p in prefixes_to_cut:
|
||||
index = directory.rfind(p)
|
||||
if index != -1:
|
||||
directory = directory[index + len(p):]
|
||||
|
||||
return directory
|
||||
|
||||
# Constants that give real names to the abbreviations in valgrind XML output.
|
||||
INSTRUCTION_POINTER = "ip"
|
||||
OBJECT_FILE = "obj"
|
||||
FUNCTION_NAME = "fn"
|
||||
SRC_FILE_DIR = "dir"
|
||||
SRC_FILE_NAME = "file"
|
||||
SRC_LINE = "line"
|
||||
|
||||
def gatherFrames(node, source_dir):
|
||||
frames = []
|
||||
for frame in node.getElementsByTagName("frame"):
|
||||
frame_dict = {
|
||||
INSTRUCTION_POINTER : getTextOf(frame, INSTRUCTION_POINTER),
|
||||
OBJECT_FILE : getTextOf(frame, OBJECT_FILE),
|
||||
FUNCTION_NAME : getTextOf(frame, FUNCTION_NAME),
|
||||
SRC_FILE_DIR : shortenFilePath(
|
||||
source_dir, getTextOf(frame, SRC_FILE_DIR)),
|
||||
SRC_FILE_NAME : getTextOf(frame, SRC_FILE_NAME),
|
||||
SRC_LINE : getTextOf(frame, SRC_LINE)
|
||||
}
|
||||
|
||||
# Ignore this frame and all the following if it's a "boring" function.
|
||||
enough_frames = False
|
||||
for regexp in _BORING_CALLERS:
|
||||
if re.match("^%s$" % regexp, frame_dict[FUNCTION_NAME]):
|
||||
enough_frames = True
|
||||
break
|
||||
if enough_frames:
|
||||
break
|
||||
|
||||
frames += [frame_dict]
|
||||
|
||||
global TheAddressTable
|
||||
if TheAddressTable != None and frame_dict[SRC_LINE] == "":
|
||||
# Try using gdb
|
||||
TheAddressTable.Add(frame_dict[OBJECT_FILE],
|
||||
frame_dict[INSTRUCTION_POINTER])
|
||||
return frames
|
||||
|
||||
class ValgrindError:
|
||||
''' Takes a <DOM Element: error> node and reads all the data from it. A
|
||||
ValgrindError is immutable and is hashed on its pretty printed output.
|
||||
'''
|
||||
|
||||
def __init__(self, source_dir, error_node, commandline, testcase):
|
||||
''' Copies all the relevant information out of the DOM and into object
|
||||
properties.
|
||||
|
||||
Args:
|
||||
error_node: The <error></error> DOM node we're extracting from.
|
||||
source_dir: Prefix that should be stripped from the <dir> node.
|
||||
commandline: The command that was run under valgrind
|
||||
testcase: The test case name, if known.
|
||||
'''
|
||||
|
||||
# Valgrind errors contain one <what><stack> pair, plus an optional
|
||||
# <auxwhat><stack> pair, plus an optional <origin><what><stack></origin>,
|
||||
# plus (since 3.5.0) a <suppression></suppression> pair.
|
||||
# (Origin is nicely enclosed; too bad the other two aren't.)
|
||||
# The most common way to see all three in one report is
|
||||
# a syscall with a parameter that points to uninitialized memory, e.g.
|
||||
# Format:
|
||||
# <error>
|
||||
# <unique>0x6d</unique>
|
||||
# <tid>1</tid>
|
||||
# <kind>SyscallParam</kind>
|
||||
# <what>Syscall param write(buf) points to uninitialised byte(s)</what>
|
||||
# <stack>
|
||||
# <frame>
|
||||
# ...
|
||||
# </frame>
|
||||
# </stack>
|
||||
# <auxwhat>Address 0x5c9af4f is 7 bytes inside a block of ...</auxwhat>
|
||||
# <stack>
|
||||
# <frame>
|
||||
# ...
|
||||
# </frame>
|
||||
# </stack>
|
||||
# <origin>
|
||||
# <what>Uninitialised value was created by a heap allocation</what>
|
||||
# <stack>
|
||||
# <frame>
|
||||
# ...
|
||||
# </frame>
|
||||
# </stack>
|
||||
# </origin>
|
||||
# <suppression>
|
||||
# <sname>insert_a_suppression_name_here</sname>
|
||||
# <skind>Memcheck:Param</skind>
|
||||
# <skaux>write(buf)</skaux>
|
||||
# <sframe> <fun>__write_nocancel</fun> </sframe>
|
||||
# ...
|
||||
# <sframe> <fun>main</fun> </sframe>
|
||||
# <rawtext>
|
||||
# <![CDATA[
|
||||
# {
|
||||
# <insert_a_suppression_name_here>
|
||||
# Memcheck:Param
|
||||
# write(buf)
|
||||
# fun:__write_nocancel
|
||||
# ...
|
||||
# fun:main
|
||||
# }
|
||||
# ]]>
|
||||
# </rawtext>
|
||||
# </suppression>
|
||||
# </error>
|
||||
#
|
||||
# Each frame looks like this:
|
||||
# <frame>
|
||||
# <ip>0x83751BC</ip>
|
||||
# <obj>/data/dkegel/chrome-build/src/out/Release/base_unittests</obj>
|
||||
# <fn>_ZN7testing8internal12TestInfoImpl7RunTestEPNS_8TestInfoE</fn>
|
||||
# <dir>/data/dkegel/chrome-build/src/testing/gtest/src</dir>
|
||||
# <file>gtest-internal-inl.h</file>
|
||||
# <line>655</line>
|
||||
# </frame>
|
||||
# although the dir, file, and line elements are missing if there is
|
||||
# no debug info.
|
||||
|
||||
self._kind = getTextOf(error_node, "kind")
|
||||
self._backtraces = []
|
||||
self._suppression = None
|
||||
self._commandline = commandline
|
||||
self._testcase = testcase
|
||||
self._additional = []
|
||||
|
||||
# Iterate through the nodes, parsing <what|auxwhat><stack> pairs.
|
||||
description = None
|
||||
for node in error_node.childNodes:
|
||||
if node.localName == "what" or node.localName == "auxwhat":
|
||||
description = "".join([n.data for n in node.childNodes
|
||||
if n.nodeType == n.TEXT_NODE])
|
||||
elif node.localName == "xwhat":
|
||||
description = getTextOf(node, "text")
|
||||
elif node.localName == "stack":
|
||||
assert description
|
||||
self._backtraces.append([description, gatherFrames(node, source_dir)])
|
||||
description = None
|
||||
elif node.localName == "origin":
|
||||
description = getTextOf(node, "what")
|
||||
stack = node.getElementsByTagName("stack")[0]
|
||||
frames = gatherFrames(stack, source_dir)
|
||||
self._backtraces.append([description, frames])
|
||||
description = None
|
||||
stack = None
|
||||
frames = None
|
||||
elif description and node.localName != None:
|
||||
# The lastest description has no stack, e.g. "Address 0x28 is unknown"
|
||||
self._additional.append(description)
|
||||
description = None
|
||||
|
||||
if node.localName == "suppression":
|
||||
self._suppression = getCDATAOf(node, "rawtext");
|
||||
|
||||
def __str__(self):
|
||||
''' Pretty print the type and backtrace(s) of this specific error,
|
||||
including suppression (which is just a mangled backtrace).'''
|
||||
output = ""
|
||||
output += "\n" # Make sure the ### is at the beginning of line.
|
||||
output += "### BEGIN MEMORY TOOL REPORT (error hash=#%016X#)\n" % \
|
||||
self.ErrorHash()
|
||||
if (self._commandline):
|
||||
output += self._commandline + "\n"
|
||||
|
||||
output += self._kind + "\n"
|
||||
for backtrace in self._backtraces:
|
||||
output += backtrace[0] + "\n"
|
||||
filter = subprocess.Popen("c++filt -n", stdin=subprocess.PIPE,
|
||||
stdout=subprocess.PIPE,
|
||||
stderr=subprocess.STDOUT,
|
||||
shell=True,
|
||||
close_fds=True)
|
||||
buf = ""
|
||||
for frame in backtrace[1]:
|
||||
buf += (frame[FUNCTION_NAME] or frame[INSTRUCTION_POINTER]) + "\n"
|
||||
(stdoutbuf, stderrbuf) = filter.communicate(buf.encode('latin-1'))
|
||||
demangled_names = stdoutbuf.split("\n")
|
||||
|
||||
i = 0
|
||||
for frame in backtrace[1]:
|
||||
output += (" " + demangled_names[i])
|
||||
i = i + 1
|
||||
|
||||
global TheAddressTable
|
||||
if TheAddressTable != None and frame[SRC_FILE_DIR] == "":
|
||||
# Try using gdb
|
||||
foo = TheAddressTable.GetFileLine(frame[OBJECT_FILE],
|
||||
frame[INSTRUCTION_POINTER])
|
||||
if foo[0] != None:
|
||||
output += (" (" + foo[0] + ":" + foo[1] + ")")
|
||||
elif frame[SRC_FILE_DIR] != "":
|
||||
output += (" (" + frame[SRC_FILE_DIR] + "/" + frame[SRC_FILE_NAME] +
|
||||
":" + frame[SRC_LINE] + ")")
|
||||
else:
|
||||
output += " (" + frame[OBJECT_FILE] + ")"
|
||||
output += "\n"
|
||||
|
||||
for additional in self._additional:
|
||||
output += additional + "\n"
|
||||
|
||||
assert self._suppression != None, "Your Valgrind doesn't generate " \
|
||||
"suppressions - is it too old?"
|
||||
|
||||
if self._testcase:
|
||||
output += "The report came from the `%s` test.\n" % self._testcase
|
||||
output += "Suppression (error hash=#%016X#):\n" % self.ErrorHash()
|
||||
output += (" For more info on using suppressions see "
|
||||
"http://dev.chromium.org/developers/tree-sheriffs/sheriff-details-chromium/memory-sheriff#TOC-Suppressing-memory-reports")
|
||||
|
||||
# Widen suppression slightly to make portable between mac and linux
|
||||
# TODO(timurrrr): Oops, these transformations should happen
|
||||
# BEFORE calculating the hash!
|
||||
supp = self._suppression;
|
||||
supp = supp.replace("fun:_Znwj", "fun:_Znw*")
|
||||
supp = supp.replace("fun:_Znwm", "fun:_Znw*")
|
||||
supp = supp.replace("fun:_Znaj", "fun:_Zna*")
|
||||
supp = supp.replace("fun:_Znam", "fun:_Zna*")
|
||||
|
||||
# Make suppressions even less platform-dependent.
|
||||
for sz in [1, 2, 4, 8]:
|
||||
supp = supp.replace("Memcheck:Addr%d" % sz, "Memcheck:Unaddressable")
|
||||
supp = supp.replace("Memcheck:Value%d" % sz, "Memcheck:Uninitialized")
|
||||
supp = supp.replace("Memcheck:Cond", "Memcheck:Uninitialized")
|
||||
|
||||
# Split into lines so we can enforce length limits
|
||||
supplines = supp.split("\n")
|
||||
supp = None # to avoid re-use
|
||||
|
||||
# Truncate at line 26 (VG_MAX_SUPP_CALLERS plus 2 for name and type)
|
||||
# or at the first 'boring' caller.
|
||||
# (https://bugs.kde.org/show_bug.cgi?id=199468 proposes raising
|
||||
# VG_MAX_SUPP_CALLERS, but we're probably fine with it as is.)
|
||||
newlen = min(26, len(supplines));
|
||||
|
||||
# Drop boring frames and all the following.
|
||||
enough_frames = False
|
||||
for frameno in range(newlen):
|
||||
for boring_caller in _BORING_CALLERS:
|
||||
if re.match("^ +fun:%s$" % boring_caller, supplines[frameno]):
|
||||
newlen = frameno
|
||||
enough_frames = True
|
||||
break
|
||||
if enough_frames:
|
||||
break
|
||||
if (len(supplines) > newlen):
|
||||
supplines = supplines[0:newlen]
|
||||
supplines.append("}")
|
||||
|
||||
for frame in range(len(supplines)):
|
||||
# Replace the always-changing anonymous namespace prefix with "*".
|
||||
m = re.match("( +fun:)_ZN.*_GLOBAL__N_.*\.cc_" +
|
||||
"[0-9a-fA-F]{8}_[0-9a-fA-F]{8}(.*)",
|
||||
supplines[frame])
|
||||
if m:
|
||||
supplines[frame] = "*".join(m.groups())
|
||||
|
||||
output += "\n".join(supplines) + "\n"
|
||||
output += "### END MEMORY TOOL REPORT (error hash=#%016X#)\n" % \
|
||||
self.ErrorHash()
|
||||
|
||||
return output
|
||||
|
||||
def UniqueString(self):
|
||||
''' String to use for object identity. Don't print this, use str(obj)
|
||||
instead.'''
|
||||
rep = self._kind + " "
|
||||
for backtrace in self._backtraces:
|
||||
for frame in backtrace[1]:
|
||||
rep += frame[FUNCTION_NAME]
|
||||
|
||||
if frame[SRC_FILE_DIR] != "":
|
||||
rep += frame[SRC_FILE_DIR] + "/" + frame[SRC_FILE_NAME]
|
||||
else:
|
||||
rep += frame[OBJECT_FILE]
|
||||
|
||||
return rep
|
||||
|
||||
# This is a device-independent hash identifying the suppression.
|
||||
# By printing out this hash we can find duplicate reports between tests and
|
||||
# different shards running on multiple buildbots
|
||||
def ErrorHash(self):
|
||||
return int(hashlib.md5(self.UniqueString()).hexdigest()[:16], 16)
|
||||
|
||||
def __hash__(self):
|
||||
return hash(self.UniqueString())
|
||||
def __eq__(self, rhs):
|
||||
return self.UniqueString() == rhs
|
||||
|
||||
def log_is_finished(f, force_finish):
|
||||
f.seek(0)
|
||||
prev_line = ""
|
||||
while True:
|
||||
line = f.readline()
|
||||
if line == "":
|
||||
if not force_finish:
|
||||
return False
|
||||
# Okay, the log is not finished but we can make it up to be parseable:
|
||||
if prev_line.strip() in ["</error>", "</errorcounts>", "</status>"]:
|
||||
f.write("</valgrindoutput>\n")
|
||||
return True
|
||||
return False
|
||||
if '</valgrindoutput>' in line:
|
||||
# Valgrind often has garbage after </valgrindoutput> upon crash.
|
||||
f.truncate()
|
||||
return True
|
||||
prev_line = line
|
||||
|
||||
class MemcheckAnalyzer:
|
||||
''' Given a set of Valgrind XML files, parse all the errors out of them,
|
||||
unique them and output the results.'''
|
||||
|
||||
SANITY_TEST_SUPPRESSIONS = {
|
||||
"Memcheck sanity test 01 (memory leak).": 1,
|
||||
"Memcheck sanity test 02 (malloc/read left).": 1,
|
||||
"Memcheck sanity test 03 (malloc/read right).": 1,
|
||||
"Memcheck sanity test 04 (malloc/write left).": 1,
|
||||
"Memcheck sanity test 05 (malloc/write right).": 1,
|
||||
"Memcheck sanity test 06 (new/read left).": 1,
|
||||
"Memcheck sanity test 07 (new/read right).": 1,
|
||||
"Memcheck sanity test 08 (new/write left).": 1,
|
||||
"Memcheck sanity test 09 (new/write right).": 1,
|
||||
"Memcheck sanity test 10 (write after free).": 1,
|
||||
"Memcheck sanity test 11 (write after delete).": 1,
|
||||
"Memcheck sanity test 12 (array deleted without []).": 1,
|
||||
"Memcheck sanity test 13 (single element deleted with []).": 1,
|
||||
"Memcheck sanity test 14 (malloc/read uninit).": 1,
|
||||
"Memcheck sanity test 15 (new/read uninit).": 1,
|
||||
}
|
||||
|
||||
# Max time to wait for memcheck logs to complete.
|
||||
LOG_COMPLETION_TIMEOUT = 180.0
|
||||
|
||||
def __init__(self, source_dir, show_all_leaks=False, use_gdb=False):
|
||||
'''Create a parser for Memcheck logs.
|
||||
|
||||
Args:
|
||||
source_dir: Path to top of source tree for this build
|
||||
show_all_leaks: Whether to show even less important leaks
|
||||
use_gdb: Whether to use gdb to resolve source filenames and line numbers
|
||||
in the report stacktraces
|
||||
'''
|
||||
self._source_dir = source_dir
|
||||
self._show_all_leaks = show_all_leaks
|
||||
self._use_gdb = use_gdb
|
||||
|
||||
# Contains the set of unique errors
|
||||
self._errors = set()
|
||||
|
||||
# Contains the time when the we started analyzing the first log file.
|
||||
# This variable is used to skip incomplete logs after some timeout.
|
||||
self._analyze_start_time = None
|
||||
|
||||
|
||||
def Report(self, files, testcase, check_sanity=False):
|
||||
'''Reads in a set of files and prints Memcheck report.
|
||||
|
||||
Args:
|
||||
files: A list of filenames.
|
||||
check_sanity: if true, search for SANITY_TEST_SUPPRESSIONS
|
||||
'''
|
||||
# Beyond the detailed errors parsed by ValgrindError above,
|
||||
# the xml file contain records describing suppressions that were used:
|
||||
# <suppcounts>
|
||||
# <pair>
|
||||
# <count>28</count>
|
||||
# <name>pango_font_leak_todo</name>
|
||||
# </pair>
|
||||
# <pair>
|
||||
# <count>378</count>
|
||||
# <name>bug_13243</name>
|
||||
# </pair>
|
||||
# </suppcounts
|
||||
# Collect these and print them at the end.
|
||||
#
|
||||
# With our patch for https://bugs.kde.org/show_bug.cgi?id=205000 in,
|
||||
# the file also includes records of the form
|
||||
# <load_obj><obj>/usr/lib/libgcc_s.1.dylib</obj><ip>0x27000</ip></load_obj>
|
||||
# giving the filename and load address of each binary that was mapped
|
||||
# into the process.
|
||||
|
||||
global TheAddressTable
|
||||
if self._use_gdb:
|
||||
TheAddressTable = gdb_helper.AddressTable()
|
||||
else:
|
||||
TheAddressTable = None
|
||||
cur_report_errors = set()
|
||||
suppcounts = defaultdict(int)
|
||||
badfiles = set()
|
||||
|
||||
if self._analyze_start_time == None:
|
||||
self._analyze_start_time = time.time()
|
||||
start_time = self._analyze_start_time
|
||||
|
||||
parse_failed = False
|
||||
for file in files:
|
||||
# Wait up to three minutes for valgrind to finish writing all files,
|
||||
# but after that, just skip incomplete files and warn.
|
||||
f = open(file, "r+")
|
||||
pid = re.match(".*\.([0-9]+)$", file)
|
||||
if pid:
|
||||
pid = pid.groups()[0]
|
||||
found = False
|
||||
running = True
|
||||
firstrun = True
|
||||
skip = False
|
||||
origsize = os.path.getsize(file)
|
||||
while (running and not found and not skip and
|
||||
(firstrun or
|
||||
((time.time() - start_time) < self.LOG_COMPLETION_TIMEOUT))):
|
||||
firstrun = False
|
||||
f.seek(0)
|
||||
if pid:
|
||||
# Make sure the process is still running so we don't wait for
|
||||
# 3 minutes if it was killed. See http://crbug.com/17453
|
||||
ps_out = subprocess.Popen("ps p %s" % pid, shell=True,
|
||||
stdout=subprocess.PIPE).stdout
|
||||
if len(ps_out.readlines()) < 2:
|
||||
running = False
|
||||
else:
|
||||
skip = True
|
||||
running = False
|
||||
found = log_is_finished(f, False)
|
||||
if not running and not found:
|
||||
logging.warn("Valgrind process PID = %s is not running but its "
|
||||
"XML log has not been finished correctly.\n"
|
||||
"Make it up by adding some closing tags manually." % pid)
|
||||
found = log_is_finished(f, not running)
|
||||
if running and not found:
|
||||
time.sleep(1)
|
||||
f.close()
|
||||
if not found:
|
||||
badfiles.add(file)
|
||||
else:
|
||||
newsize = os.path.getsize(file)
|
||||
if origsize > newsize+1:
|
||||
logging.warn(str(origsize - newsize) +
|
||||
" bytes of junk were after </valgrindoutput> in %s!" %
|
||||
file)
|
||||
try:
|
||||
parsed_file = parse(file);
|
||||
except ExpatError, e:
|
||||
parse_failed = True
|
||||
logging.warn("could not parse %s: %s" % (file, e))
|
||||
lineno = e.lineno - 1
|
||||
context_lines = 5
|
||||
context_start = max(0, lineno - context_lines)
|
||||
context_end = lineno + context_lines + 1
|
||||
context_file = open(file, "r")
|
||||
for i in range(0, context_start):
|
||||
context_file.readline()
|
||||
for i in range(context_start, context_end):
|
||||
context_data = context_file.readline().rstrip()
|
||||
if i != lineno:
|
||||
logging.warn(" %s" % context_data)
|
||||
else:
|
||||
logging.warn("> %s" % context_data)
|
||||
context_file.close()
|
||||
continue
|
||||
if TheAddressTable != None:
|
||||
load_objs = parsed_file.getElementsByTagName("load_obj")
|
||||
for load_obj in load_objs:
|
||||
obj = getTextOf(load_obj, "obj")
|
||||
ip = getTextOf(load_obj, "ip")
|
||||
TheAddressTable.AddBinaryAt(obj, ip)
|
||||
|
||||
commandline = None
|
||||
preamble = parsed_file.getElementsByTagName("preamble")[0];
|
||||
for node in preamble.getElementsByTagName("line"):
|
||||
if node.localName == "line":
|
||||
for x in node.childNodes:
|
||||
if x.nodeType == node.TEXT_NODE and "Command" in x.data:
|
||||
commandline = x.data
|
||||
break
|
||||
|
||||
raw_errors = parsed_file.getElementsByTagName("error")
|
||||
for raw_error in raw_errors:
|
||||
# Ignore "possible" leaks for now by default.
|
||||
if (self._show_all_leaks or
|
||||
getTextOf(raw_error, "kind") != "Leak_PossiblyLost"):
|
||||
error = ValgrindError(self._source_dir,
|
||||
raw_error, commandline, testcase)
|
||||
if error not in cur_report_errors:
|
||||
# We haven't seen such errors doing this report yet...
|
||||
if error in self._errors:
|
||||
# ... but we saw it in earlier reports, e.g. previous UI test
|
||||
cur_report_errors.add("This error was already printed in "
|
||||
"some other test, see 'hash=#%016X#'" % \
|
||||
error.ErrorHash())
|
||||
else:
|
||||
# ... and we haven't seen it in other tests as well
|
||||
self._errors.add(error)
|
||||
cur_report_errors.add(error)
|
||||
|
||||
suppcountlist = parsed_file.getElementsByTagName("suppcounts")
|
||||
if len(suppcountlist) > 0:
|
||||
suppcountlist = suppcountlist[0]
|
||||
for node in suppcountlist.getElementsByTagName("pair"):
|
||||
count = getTextOf(node, "count");
|
||||
name = getTextOf(node, "name");
|
||||
suppcounts[name] += int(count)
|
||||
|
||||
if len(badfiles) > 0:
|
||||
logging.warn("valgrind didn't finish writing %d files?!" % len(badfiles))
|
||||
for file in badfiles:
|
||||
logging.warn("Last 20 lines of %s :" % file)
|
||||
os.system("tail -n 20 '%s' 1>&2" % file)
|
||||
|
||||
if parse_failed:
|
||||
logging.error("FAIL! Couldn't parse Valgrind output file")
|
||||
return -2
|
||||
|
||||
common.PrintUsedSuppressionsList(suppcounts)
|
||||
|
||||
retcode = 0
|
||||
if cur_report_errors:
|
||||
logging.error("FAIL! There were %s errors: " % len(cur_report_errors))
|
||||
|
||||
if TheAddressTable != None:
|
||||
TheAddressTable.ResolveAll()
|
||||
|
||||
for error in cur_report_errors:
|
||||
logging.error(error)
|
||||
|
||||
retcode = -1
|
||||
|
||||
# Report tool's insanity even if there were errors.
|
||||
if check_sanity:
|
||||
remaining_sanity_supp = MemcheckAnalyzer.SANITY_TEST_SUPPRESSIONS
|
||||
for (name, count) in suppcounts.iteritems():
|
||||
# Workaround for http://crbug.com/334074
|
||||
if (name in remaining_sanity_supp and
|
||||
remaining_sanity_supp[name] <= count):
|
||||
del remaining_sanity_supp[name]
|
||||
if remaining_sanity_supp:
|
||||
logging.error("FAIL! Sanity check failed!")
|
||||
logging.info("The following test errors were not handled: ")
|
||||
for (name, count) in remaining_sanity_supp.iteritems():
|
||||
logging.info(" * %dx %s" % (count, name))
|
||||
retcode = -3
|
||||
|
||||
if retcode != 0:
|
||||
return retcode
|
||||
|
||||
logging.info("PASS! No errors found!")
|
||||
return 0
|
||||
|
||||
|
||||
def _main():
|
||||
'''For testing only. The MemcheckAnalyzer class should be imported instead.'''
|
||||
parser = optparse.OptionParser("usage: %prog [options] <files to analyze>")
|
||||
parser.add_option("", "--source-dir",
|
||||
help="path to top of source tree for this build"
|
||||
"(used to normalize source paths in baseline)")
|
||||
|
||||
(options, args) = parser.parse_args()
|
||||
if len(args) == 0:
|
||||
parser.error("no filename specified")
|
||||
filenames = args
|
||||
|
||||
analyzer = MemcheckAnalyzer(options.source_dir, use_gdb=True)
|
||||
return analyzer.Report(filenames, None)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
sys.exit(_main())
|
|
@ -1,27 +0,0 @@
|
|||
# Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license
|
||||
# that can be found in the LICENSE file in the root of the source
|
||||
# tree. An additional intellectual property rights grant can be found
|
||||
# in the file PATENTS. All contributing project authors may
|
||||
# be found in the AUTHORS file in the root of the source tree.
|
||||
|
||||
python_google = [
|
||||
"../tools/python/google/__init__.py",
|
||||
"../tools/python/google/gethash_timer.py",
|
||||
"../tools/python/google/httpd_config/httpd.conf",
|
||||
"../tools/python/google/httpd_config/httpd2.conf",
|
||||
"../tools/python/google/httpd_config/httpd2.pem",
|
||||
"../tools/python/google/httpd_config/httpd2_linux.conf",
|
||||
"../tools/python/google/httpd_config/httpd2_mac.conf",
|
||||
"../tools/python/google/httpd_config/mime.types",
|
||||
"../tools/python/google/httpd_config/root_ca_cert.pem",
|
||||
"../tools/python/google/httpd_utils.py",
|
||||
"../tools/python/google/logging_utils.py",
|
||||
"../tools/python/google/path_utils.py",
|
||||
"../tools/python/google/platform_utils.py",
|
||||
"../tools/python/google/platform_utils_linux.py",
|
||||
"../tools/python/google/platform_utils_mac.py",
|
||||
"../tools/python/google/platform_utils_win.py",
|
||||
"../tools/python/google/process_utils.py",
|
||||
]
|
|
@ -1,425 +0,0 @@
|
|||
# Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license
|
||||
# that can be found in the LICENSE file in the root of the source
|
||||
# tree. An additional intellectual property rights grant can be found
|
||||
# in the file PATENTS. All contributing project authors may
|
||||
# be found in the AUTHORS file in the root of the source tree.
|
||||
|
||||
valgrind_binaries = []
|
||||
|
||||
if (is_mac) {
|
||||
valgrind_binaries += [
|
||||
"../third_party/valgrind/mac_10.6/bin/ms_print",
|
||||
"../third_party/valgrind/mac_10.6/bin/no_op_client_for_valgrind",
|
||||
"../third_party/valgrind/mac_10.6/bin/valgrind",
|
||||
"../third_party/valgrind/mac_10.6/bin/valgrind-listener",
|
||||
"../third_party/valgrind/mac_10.6/bin/vgdb",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/32bit-core-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/32bit-core-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/32bit-core.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/32bit-linux-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/32bit-linux-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/32bit-linux.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/32bit-sse-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/32bit-sse-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/32bit-sse.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/64bit-avx-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/64bit-avx-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/64bit-avx.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/64bit-core-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/64bit-core-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/64bit-core.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/64bit-linux-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/64bit-linux-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/64bit-linux.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/64bit-sse-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/64bit-sse-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/64bit-sse.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/amd64-avx-coresse-valgrind.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/amd64-avx-coresse.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/amd64-avx-linux-valgrind.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/amd64-avx-linux.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/amd64-coresse-valgrind.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/amd64-linux-valgrind.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/arm-core-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/arm-core-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/arm-core.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/arm-vfpv3-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/arm-vfpv3-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/arm-vfpv3.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/arm-with-vfpv3-valgrind.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/arm-with-vfpv3.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/default.supp",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/i386-coresse-valgrind.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/i386-linux-valgrind.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/libmpiwrap-amd64-darwin.so",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/libmpiwrap-amd64-darwin.so.dSYM/Contents/Info.plist",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/libmpiwrap-amd64-darwin.so.dSYM/Contents/Resources/DWARF/libmpiwrap-amd64-darwin.so",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/libmpiwrap-x86-darwin.so",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/libmpiwrap-x86-darwin.so.dSYM/Contents/Info.plist",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/libmpiwrap-x86-darwin.so.dSYM/Contents/Resources/DWARF/libmpiwrap-x86-darwin.so",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/memcheck-amd64-darwin",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/memcheck-amd64-darwin.dSYM/Contents/Info.plist",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/memcheck-amd64-darwin.dSYM/Contents/Resources/DWARF/memcheck-amd64-darwin",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/memcheck-x86-darwin",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/memcheck-x86-darwin.dSYM/Contents/Info.plist",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/memcheck-x86-darwin.dSYM/Contents/Resources/DWARF/memcheck-x86-darwin",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/mips-cp0-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/mips-cp0-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/mips-cp0.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/mips-cpu-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/mips-cpu-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/mips-cpu.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/mips-fpu-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/mips-fpu-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/mips-fpu.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/mips-linux-valgrind.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/mips-linux.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/power-altivec-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/power-altivec-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/power-altivec.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/power-core-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/power-core-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/power-core.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/power-fpu-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/power-fpu-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/power-fpu.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/power-linux-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/power-linux-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/power-linux.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/power64-core-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/power64-core-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/power64-core.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/power64-linux-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/power64-linux-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/power64-linux.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/powerpc-altivec32l-valgrind.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/powerpc-altivec32l.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/powerpc-altivec64l-valgrind.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/powerpc-altivec64l.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/s390-acr-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/s390-acr-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/s390-acr.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/s390-fpr-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/s390-fpr-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/s390-fpr.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/s390x-core64-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/s390x-core64-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/s390x-core64.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/s390x-generic-valgrind.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/s390x-generic.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/s390x-linux64-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/s390x-linux64-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/s390x-linux64.xml",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/vgpreload_core-amd64-darwin.so",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/vgpreload_core-amd64-darwin.so.dSYM/Contents/Info.plist",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/vgpreload_core-amd64-darwin.so.dSYM/Contents/Resources/DWARF/vgpreload_core-amd64-darwin.so",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/vgpreload_core-x86-darwin.so",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/vgpreload_core-x86-darwin.so.dSYM/Contents/Info.plist",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/vgpreload_core-x86-darwin.so.dSYM/Contents/Resources/DWARF/vgpreload_core-x86-darwin.so",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/vgpreload_memcheck-amd64-darwin.so",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/vgpreload_memcheck-amd64-darwin.so.dSYM/Contents/Info.plist",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/vgpreload_memcheck-amd64-darwin.so.dSYM/Contents/Resources/DWARF/vgpreload_memcheck-amd64-darwin.so",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/vgpreload_memcheck-x86-darwin.so",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/vgpreload_memcheck-x86-darwin.so.dSYM/Contents/Info.plist",
|
||||
"../third_party/valgrind/mac_10.6/lib/valgrind/vgpreload_memcheck-x86-darwin.so.dSYM/Contents/Resources/DWARF/vgpreload_memcheck-x86-darwin.so",
|
||||
"../third_party/valgrind/mac_10.7/bin/valgrind",
|
||||
"../third_party/valgrind/mac_10.7/bin/valgrind-listener",
|
||||
"../third_party/valgrind/mac_10.7/bin/vgdb",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/32bit-core-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/32bit-core-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/32bit-core.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/32bit-linux-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/32bit-linux-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/32bit-linux.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/32bit-sse-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/32bit-sse-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/32bit-sse.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/64bit-avx-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/64bit-avx-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/64bit-avx.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/64bit-core-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/64bit-core-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/64bit-core.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/64bit-linux-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/64bit-linux-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/64bit-linux.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/64bit-sse-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/64bit-sse-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/64bit-sse.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/amd64-avx-coresse-valgrind.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/amd64-avx-coresse.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/amd64-avx-linux-valgrind.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/amd64-avx-linux.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/amd64-coresse-valgrind.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/amd64-linux-valgrind.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/arm-core-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/arm-core-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/arm-core.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/arm-vfpv3-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/arm-vfpv3-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/arm-vfpv3.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/arm-with-vfpv3-valgrind.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/arm-with-vfpv3.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/default.supp",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/i386-coresse-valgrind.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/i386-linux-valgrind.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/memcheck-amd64-darwin",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/memcheck-amd64-darwin.dSYM/Contents/Info.plist",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/memcheck-amd64-darwin.dSYM/Contents/Resources/DWARF/memcheck-amd64-darwin",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/memcheck-x86-darwin",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/memcheck-x86-darwin.dSYM/Contents/Info.plist",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/memcheck-x86-darwin.dSYM/Contents/Resources/DWARF/memcheck-x86-darwin",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/mips-cp0-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/mips-cp0-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/mips-cp0.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/mips-cpu-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/mips-cpu-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/mips-cpu.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/mips-fpu-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/mips-fpu-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/mips-fpu.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/mips-linux-valgrind.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/mips-linux.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/power-altivec-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/power-altivec-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/power-altivec.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/power-core-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/power-core-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/power-core.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/power-fpu-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/power-fpu-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/power-fpu.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/power-linux-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/power-linux-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/power-linux.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/power64-core-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/power64-core-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/power64-core.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/power64-linux-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/power64-linux-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/power64-linux.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/powerpc-altivec32l-valgrind.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/powerpc-altivec32l.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/powerpc-altivec64l-valgrind.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/powerpc-altivec64l.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/s390-acr-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/s390-acr-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/s390-acr.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/s390-fpr-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/s390-fpr-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/s390-fpr.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/s390x-core64-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/s390x-core64-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/s390x-core64.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/s390x-generic-valgrind.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/s390x-generic.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/s390x-linux64-valgrind-s1.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/s390x-linux64-valgrind-s2.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/s390x-linux64.xml",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/vgpreload_core-amd64-darwin.so.dSYM/Contents/Info.plist",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/vgpreload_core-x86-darwin.so.dSYM/Contents/Info.plist",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/vgpreload_memcheck-amd64-darwin.so.dSYM/Contents/Info.plist",
|
||||
"../third_party/valgrind/mac_10.7/lib/valgrind/vgpreload_memcheck-x86-darwin.so.dSYM/Contents/Info.plist",
|
||||
]
|
||||
} else if (is_linux) {
|
||||
if (target_cpu == "x64") {
|
||||
valgrind_binaries += [
|
||||
"../third_party/valgrind/linux_x64/bin/ms_print",
|
||||
"../third_party/valgrind/linux_x64/bin/no_op_client_for_valgrind",
|
||||
"../third_party/valgrind/linux_x64/bin/valgrind",
|
||||
"../third_party/valgrind/linux_x64/bin/valgrind-listener",
|
||||
"../third_party/valgrind/linux_x64/bin/valgrind-tsan.sh",
|
||||
"../third_party/valgrind/linux_x64/bin/vgdb",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/32bit-core-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/32bit-core-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/32bit-core.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/32bit-linux-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/32bit-linux-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/32bit-linux.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/32bit-sse-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/32bit-sse-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/32bit-sse.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/64bit-avx-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/64bit-avx-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/64bit-avx.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/64bit-core-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/64bit-core-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/64bit-core.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/64bit-linux-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/64bit-linux-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/64bit-linux.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/64bit-sse-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/64bit-sse-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/64bit-sse.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/amd64-avx-coresse-valgrind.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/amd64-avx-coresse.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/amd64-avx-linux-valgrind.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/amd64-avx-linux.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/amd64-coresse-valgrind.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/amd64-linux-valgrind.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/arm-core-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/arm-core-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/arm-core.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/arm-vfpv3-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/arm-vfpv3-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/arm-vfpv3.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/arm-with-vfpv3-valgrind.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/arm-with-vfpv3.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/default.supp",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/i386-coresse-valgrind.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/i386-linux-valgrind.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/memcheck-amd64-linux",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/memcheck-x86-linux",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/mips-cp0-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/mips-cp0-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/mips-cp0.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/mips-cpu-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/mips-cpu-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/mips-cpu.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/mips-fpu-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/mips-fpu-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/mips-fpu.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/mips-linux-valgrind.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/mips-linux.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/power-altivec-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/power-altivec-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/power-altivec.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/power-core-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/power-core-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/power-core.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/power-fpu-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/power-fpu-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/power-fpu.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/power-linux-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/power-linux-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/power-linux.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/power64-core-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/power64-core-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/power64-core.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/power64-linux-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/power64-linux-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/power64-linux.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/powerpc-altivec32l-valgrind.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/powerpc-altivec32l.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/powerpc-altivec64l-valgrind.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/powerpc-altivec64l.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/s390-acr-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/s390-acr-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/s390-acr.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/s390-fpr-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/s390-fpr-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/s390-fpr.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/s390x-core64-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/s390x-core64-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/s390x-core64.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/s390x-generic-valgrind.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/s390x-generic.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/s390x-linux64-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/s390x-linux64-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/s390x-linux64.xml",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/vgpreload_core-amd64-linux.so",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/vgpreload_core-x86-linux.so",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/vgpreload_memcheck-amd64-linux.so",
|
||||
"../third_party/valgrind/linux_x64/lib/valgrind/vgpreload_memcheck-x86-linux.so",
|
||||
]
|
||||
} else if (target_cpu == "x86") {
|
||||
valgrind_binaries += [
|
||||
"../third_party/valgrind/linux_x86/bin/ms_print",
|
||||
"../third_party/valgrind/linux_x86/bin/no_op_client_for_valgrind",
|
||||
"../third_party/valgrind/linux_x86/bin/valgrind",
|
||||
"../third_party/valgrind/linux_x86/bin/valgrind-listener",
|
||||
"../third_party/valgrind/linux_x86/bin/valgrind-tsan.sh",
|
||||
"../third_party/valgrind/linux_x86/bin/vgdb",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/32bit-core-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/32bit-core-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/32bit-core.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/32bit-linux-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/32bit-linux-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/32bit-linux.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/32bit-sse-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/32bit-sse-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/32bit-sse.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/64bit-avx-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/64bit-avx-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/64bit-avx.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/64bit-core-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/64bit-core-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/64bit-core.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/64bit-linux-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/64bit-linux-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/64bit-linux.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/64bit-sse-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/64bit-sse-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/64bit-sse.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/amd64-avx-coresse-valgrind.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/amd64-avx-coresse.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/amd64-avx-linux-valgrind.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/amd64-avx-linux.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/amd64-coresse-valgrind.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/amd64-linux-valgrind.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/arm-core-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/arm-core-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/arm-core.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/arm-vfpv3-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/arm-vfpv3-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/arm-vfpv3.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/arm-with-vfpv3-valgrind.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/arm-with-vfpv3.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/default.supp",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/i386-coresse-valgrind.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/i386-linux-valgrind.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/memcheck-x86-linux",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/mips-cp0-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/mips-cp0-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/mips-cp0.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/mips-cpu-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/mips-cpu-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/mips-cpu.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/mips-fpu-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/mips-fpu-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/mips-fpu.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/mips-linux-valgrind.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/mips-linux.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/power-altivec-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/power-altivec-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/power-altivec.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/power-core-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/power-core-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/power-core.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/power-fpu-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/power-fpu-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/power-fpu.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/power-linux-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/power-linux-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/power-linux.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/power64-core-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/power64-core-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/power64-core.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/power64-linux-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/power64-linux-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/power64-linux.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/powerpc-altivec32l-valgrind.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/powerpc-altivec32l.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/powerpc-altivec64l-valgrind.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/powerpc-altivec64l.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/s390-acr-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/s390-acr-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/s390-acr.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/s390-fpr-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/s390-fpr-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/s390-fpr.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/s390x-core64-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/s390x-core64-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/s390x-core64.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/s390x-generic-valgrind.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/s390x-generic.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/s390x-linux64-valgrind-s1.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/s390x-linux64-valgrind-s2.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/s390x-linux64.xml",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/vgpreload_core-x86-linux.so",
|
||||
"../third_party/valgrind/linux_x86/lib/valgrind/vgpreload_memcheck-x86-linux.so",
|
||||
]
|
||||
}
|
||||
}
|
|
@ -1,43 +0,0 @@
|
|||
# Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license
|
||||
# that can be found in the LICENSE file in the root of the source
|
||||
# tree. An additional intellectual property rights grant can be found
|
||||
# in the file PATENTS. All contributing project authors may
|
||||
# be found in the AUTHORS file in the root of the source tree.
|
||||
|
||||
# TODO(ehmaldonado): Replace by the new paths once the upstream changes land.
|
||||
# See https://codereview.chromium.org/2526883002/ for valgrind-binaries.gni and
|
||||
# https://codereview.chromium.org/2517953007/ for python-google.gni and
|
||||
# valgrind.gni
|
||||
import("python-google.gni")
|
||||
import("valgrind-binaries.gni")
|
||||
import("valgrind.gni")
|
||||
|
||||
valgrind_webrtc_dependencies = [
|
||||
"../tools_webrtc/valgrind/gtest_exclude/modules_tests.gtest-memcheck.txt",
|
||||
"../tools_webrtc/valgrind/gtest_exclude/modules_unittests.gtest-memcheck.txt",
|
||||
"../tools_webrtc/valgrind/gtest_exclude/ortc_unittests.gtest-memcheck.txt",
|
||||
"../tools_webrtc/valgrind/gtest_exclude/peerconnection_unittests.gtest-memcheck.txt",
|
||||
"../tools_webrtc/valgrind/gtest_exclude/rtc_media_unittests.gtest-memcheck.txt",
|
||||
"../tools_webrtc/valgrind/gtest_exclude/rtc_media_unittests.gtest-memcheck_mac.txt",
|
||||
"../tools_webrtc/valgrind/gtest_exclude/rtc_pc_unittests.gtest-memcheck.txt",
|
||||
"../tools_webrtc/valgrind/gtest_exclude/rtc_unittests.gtest-memcheck.txt",
|
||||
"../tools_webrtc/valgrind/gtest_exclude/video_engine_tests.gtest-memcheck.txt",
|
||||
"../tools_webrtc/valgrind/gtest_exclude/webrtc_nonparallel_tests.gtest-memcheck.txt",
|
||||
"../tools_webrtc/valgrind/memcheck/suppressions.txt",
|
||||
"../tools_webrtc/valgrind/memcheck/suppressions_mac.txt",
|
||||
"../tools_webrtc/valgrind/memcheck/suppressions_win32.txt",
|
||||
"../tools_webrtc/valgrind/chrome_tests.bat",
|
||||
"../tools_webrtc/valgrind/chrome_tests.py",
|
||||
"../tools_webrtc/valgrind/chrome_tests.sh",
|
||||
"../tools_webrtc/valgrind/common.py",
|
||||
"../tools_webrtc/valgrind/gdb_helper.py",
|
||||
"../tools_webrtc/valgrind/locate_valgrind.sh",
|
||||
"../tools_webrtc/valgrind/memcheck_analyze.py",
|
||||
"../tools_webrtc/valgrind/valgrind.sh",
|
||||
"../tools_webrtc/valgrind/valgrind_test.py",
|
||||
"../tools_webrtc/valgrind/webrtc_tests.py",
|
||||
"../tools_webrtc/valgrind/webrtc_tests.sh",
|
||||
] + valgrind_dependencies + valgrind_binaries +
|
||||
python_google
|
|
@ -1,56 +0,0 @@
|
|||
# Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license
|
||||
# that can be found in the LICENSE file in the root of the source
|
||||
# tree. An additional intellectual property rights grant can be found
|
||||
# in the file PATENTS. All contributing project authors may
|
||||
# be found in the AUTHORS file in the root of the source tree.
|
||||
|
||||
import("//build_overrides/build.gni")
|
||||
|
||||
valgrind_dependencies = [
|
||||
"../tools/valgrind/asan/asan_symbolize.py",
|
||||
"../tools/valgrind/asan/third_party/__init__.py",
|
||||
"../tools/valgrind/asan/third_party/asan_symbolize.py",
|
||||
"../tools/valgrind/fixed_suppressions.sh",
|
||||
"../tools/valgrind/memcheck/suppressions.txt",
|
||||
"../tools/valgrind/memcheck/suppressions_linux.txt",
|
||||
"../tools/valgrind/regrind.sh",
|
||||
"../tools/valgrind/scan-build.py",
|
||||
"../tools/valgrind/suppressions.py",
|
||||
"../tools/valgrind/test_suppressions.py",
|
||||
"../tools/valgrind/unused_suppressions.py",
|
||||
"../tools/valgrind/waterfall.sh",
|
||||
]
|
||||
|
||||
if (build_with_chromium) {
|
||||
valgrind_dependencies += [
|
||||
"../tools/valgrind/gtest_exclude/ash_unittests.gtest-memcheck.txt",
|
||||
"../tools/valgrind/gtest_exclude/aura_unittests.gtest.txt",
|
||||
"../tools/valgrind/gtest_exclude/base_unittests.gtest.txt",
|
||||
"../tools/valgrind/gtest_exclude/base_unittests.gtest_win-8.txt",
|
||||
"../tools/valgrind/gtest_exclude/base_unittests.gtest_win32.txt",
|
||||
"../tools/valgrind/gtest_exclude/blink_platform_unittests.gtest_win32.txt",
|
||||
"../tools/valgrind/gtest_exclude/browser_tests.gtest-memcheck.txt",
|
||||
"../tools/valgrind/gtest_exclude/chromeos_unittests.gtest.txt",
|
||||
"../tools/valgrind/gtest_exclude/components_unittests.gtest.txt",
|
||||
"../tools/valgrind/gtest_exclude/content_unittests.gtest.txt",
|
||||
"../tools/valgrind/gtest_exclude/extensions_unittests.gtest-memcheck.txt",
|
||||
"../tools/valgrind/gtest_exclude/interactive_ui_tests.gtest.txt",
|
||||
"../tools/valgrind/gtest_exclude/ipc_tests.gtest.txt",
|
||||
"../tools/valgrind/gtest_exclude/media_unittests.gtest.txt",
|
||||
"../tools/valgrind/gtest_exclude/message_center_unittests.gtest.txt",
|
||||
"../tools/valgrind/gtest_exclude/net_unittests.gtest-memcheck.txt",
|
||||
"../tools/valgrind/gtest_exclude/net_unittests.gtest.txt",
|
||||
"../tools/valgrind/gtest_exclude/net_unittests.gtest_linux.txt",
|
||||
"../tools/valgrind/gtest_exclude/remoting_unittests.gtest_win-8.txt",
|
||||
"../tools/valgrind/gtest_exclude/sandbox_linux_unittests.gtest.txt",
|
||||
"../tools/valgrind/gtest_exclude/suppressions.txt",
|
||||
"../tools/valgrind/gtest_exclude/sync_unit_tests.gtest-asan.txt",
|
||||
"../tools/valgrind/gtest_exclude/ui_base_unittests.gtest-memcheck.txt",
|
||||
"../tools/valgrind/gtest_exclude/ui_unittests.gtest-memcheck_linux.txt",
|
||||
"../tools/valgrind/gtest_exclude/unit_tests.gtest-memcheck.txt",
|
||||
"../tools/valgrind/gtest_exclude/unit_tests.gtest.txt",
|
||||
"../tools/valgrind/gtest_exclude/unit_tests.gtest_linux.txt",
|
||||
]
|
||||
}
|
|
@ -1,110 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license
|
||||
# that can be found in the LICENSE file in the root of the source
|
||||
# tree. An additional intellectual property rights grant can be found
|
||||
# in the file PATENTS. All contributing project authors may
|
||||
# be found in the AUTHORS file in the root of the source tree.
|
||||
|
||||
# This is a small script for manually launching valgrind, along with passing
|
||||
# it the suppression file, and some helpful arguments (automatically attaching
|
||||
# the debugger on failures, etc). Run it from your repo root, something like:
|
||||
# $ sh ./tools/valgrind/valgrind.sh ./out/Debug/chrome
|
||||
#
|
||||
# This is mostly intended for running the chrome browser interactively.
|
||||
# To run unit tests, you probably want to run chrome_tests.sh instead.
|
||||
# That's the script used by the valgrind buildbot.
|
||||
|
||||
export THISDIR=`dirname $0`
|
||||
|
||||
setup_memcheck() {
|
||||
RUN_COMMAND="valgrind"
|
||||
|
||||
# Prompt to attach gdb when there was an error detected.
|
||||
DEFAULT_TOOL_FLAGS=("--db-command=gdb -nw %f %p" "--db-attach=yes" \
|
||||
# Keep the registers in gdb in sync with the code.
|
||||
"--vex-iropt-register-updates=allregs-at-mem-access" \
|
||||
# Overwrite newly allocated or freed objects
|
||||
# with 0x41 to catch inproper use.
|
||||
"--malloc-fill=41" "--free-fill=41" \
|
||||
# Increase the size of stacks being tracked.
|
||||
"--num-callers=30")
|
||||
}
|
||||
|
||||
setup_unknown() {
|
||||
echo "Unknown tool \"$TOOL_NAME\" specified, the result is not guaranteed"
|
||||
DEFAULT_TOOL_FLAGS=()
|
||||
}
|
||||
|
||||
set -e
|
||||
|
||||
if [ $# -eq 0 ]; then
|
||||
echo "usage: <command to run> <arguments ...>"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
TOOL_NAME="memcheck"
|
||||
declare -a DEFAULT_TOOL_FLAGS[0]
|
||||
|
||||
# Select a tool different from memcheck with --tool=TOOL as a first argument
|
||||
TMP_STR=`echo $1 | sed 's/^\-\-tool=//'`
|
||||
if [ "$TMP_STR" != "$1" ]; then
|
||||
TOOL_NAME="$TMP_STR"
|
||||
shift
|
||||
fi
|
||||
|
||||
if echo "$@" | grep "\-\-tool" ; then
|
||||
echo "--tool=TOOL must be the first argument" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
case $TOOL_NAME in
|
||||
memcheck*) setup_memcheck "$1";;
|
||||
*) setup_unknown;;
|
||||
esac
|
||||
|
||||
|
||||
SUPPRESSIONS="$THISDIR/$TOOL_NAME/suppressions.txt"
|
||||
|
||||
CHROME_VALGRIND=`sh $THISDIR/locate_valgrind.sh`
|
||||
if [ "$CHROME_VALGRIND" = "" ]
|
||||
then
|
||||
# locate_valgrind.sh failed
|
||||
exit 1
|
||||
fi
|
||||
echo "Using valgrind binaries from ${CHROME_VALGRIND}"
|
||||
|
||||
set -x
|
||||
PATH="${CHROME_VALGRIND}/bin:$PATH"
|
||||
# We need to set these variables to override default lib paths hard-coded into
|
||||
# Valgrind binary.
|
||||
export VALGRIND_LIB="$CHROME_VALGRIND/lib/valgrind"
|
||||
export VALGRIND_LIB_INNER="$CHROME_VALGRIND/lib/valgrind"
|
||||
|
||||
# G_SLICE=always-malloc: make glib use system malloc
|
||||
# NSS_DISABLE_UNLOAD=1: make nss skip dlclosing dynamically loaded modules,
|
||||
# which would result in "obj:*" in backtraces.
|
||||
# NSS_DISABLE_ARENA_FREE_LIST=1: make nss use system malloc
|
||||
# G_DEBUG=fatal_warnings: make GTK abort on any critical or warning assertions.
|
||||
# If it crashes on you in the Options menu, you hit bug 19751,
|
||||
# comment out the G_DEBUG=fatal_warnings line.
|
||||
#
|
||||
# GTEST_DEATH_TEST_USE_FORK=1: make gtest death tests valgrind-friendly
|
||||
#
|
||||
# When everyone has the latest valgrind, we might want to add
|
||||
# --show-possibly-lost=no
|
||||
# to ignore possible but not definite leaks.
|
||||
|
||||
G_SLICE=always-malloc \
|
||||
NSS_DISABLE_UNLOAD=1 \
|
||||
NSS_DISABLE_ARENA_FREE_LIST=1 \
|
||||
G_DEBUG=fatal_warnings \
|
||||
GTEST_DEATH_TEST_USE_FORK=1 \
|
||||
$RUN_COMMAND \
|
||||
--trace-children=yes \
|
||||
--leak-check=yes \
|
||||
--suppressions="$SUPPRESSIONS" \
|
||||
"${DEFAULT_TOOL_FLAGS[@]}" \
|
||||
"$@"
|
|
@ -1,517 +0,0 @@
|
|||
#!/usr/bin/env python
|
||||
# Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license
|
||||
# that can be found in the LICENSE file in the root of the source
|
||||
# tree. An additional intellectual property rights grant can be found
|
||||
# in the file PATENTS. All contributing project authors may
|
||||
# be found in the AUTHORS file in the root of the source tree.
|
||||
|
||||
"""Runs an exe through Valgrind and puts the intermediate files in a
|
||||
directory.
|
||||
"""
|
||||
|
||||
import datetime
|
||||
import glob
|
||||
import logging
|
||||
import optparse
|
||||
import os
|
||||
import re
|
||||
import shutil
|
||||
import stat
|
||||
import subprocess
|
||||
import sys
|
||||
import tempfile
|
||||
|
||||
import common
|
||||
|
||||
import memcheck_analyze
|
||||
|
||||
class BaseTool(object):
|
||||
"""Abstract class for running dynamic error detection tools.
|
||||
|
||||
Always subclass this and implement ToolCommand with framework- and
|
||||
tool-specific stuff.
|
||||
"""
|
||||
|
||||
def __init__(self):
|
||||
temp_parent_dir = None
|
||||
self.log_parent_dir = ""
|
||||
if common.IsWindows():
|
||||
# gpu process on Windows Vista+ runs at Low Integrity and can only
|
||||
# write to certain directories (http://crbug.com/119131)
|
||||
#
|
||||
# TODO(bruening): if scripts die in middle and don't clean up temp
|
||||
# dir, we'll accumulate files in profile dir. should remove
|
||||
# really old files automatically.
|
||||
profile = os.getenv("USERPROFILE")
|
||||
if profile:
|
||||
self.log_parent_dir = profile + "\\AppData\\LocalLow\\"
|
||||
if os.path.exists(self.log_parent_dir):
|
||||
self.log_parent_dir = common.NormalizeWindowsPath(self.log_parent_dir)
|
||||
temp_parent_dir = self.log_parent_dir
|
||||
# Generated every time (even when overridden)
|
||||
self.temp_dir = tempfile.mkdtemp(prefix="vg_logs_", dir=temp_parent_dir)
|
||||
self.log_dir = self.temp_dir # overridable by --keep_logs
|
||||
self.option_parser_hooks = []
|
||||
# TODO(glider): we may not need some of the env vars on some of the
|
||||
# platforms.
|
||||
self._env = {
|
||||
"G_SLICE" : "always-malloc",
|
||||
"NSS_DISABLE_UNLOAD" : "1",
|
||||
"NSS_DISABLE_ARENA_FREE_LIST" : "1",
|
||||
"GTEST_DEATH_TEST_USE_FORK": "1",
|
||||
}
|
||||
|
||||
def ToolName(self):
|
||||
raise NotImplementedError, "This method should be implemented " \
|
||||
"in the tool-specific subclass"
|
||||
|
||||
def Analyze(self, check_sanity=False):
|
||||
raise NotImplementedError, "This method should be implemented " \
|
||||
"in the tool-specific subclass"
|
||||
|
||||
def RegisterOptionParserHook(self, hook):
|
||||
# Frameworks and tools can add their own flags to the parser.
|
||||
self.option_parser_hooks.append(hook)
|
||||
|
||||
def CreateOptionParser(self):
|
||||
# Defines Chromium-specific flags.
|
||||
self._parser = optparse.OptionParser("usage: %prog [options] <program to "
|
||||
"test>")
|
||||
self._parser.disable_interspersed_args()
|
||||
self._parser.add_option("-t", "--timeout",
|
||||
dest="timeout", metavar="TIMEOUT", default=10000,
|
||||
help="timeout in seconds for the run (default 10000)")
|
||||
self._parser.add_option("", "--build-dir",
|
||||
help="the location of the compiler output")
|
||||
self._parser.add_option("", "--source-dir",
|
||||
help="path to top of source tree for this build"
|
||||
"(used to normalize source paths in baseline)")
|
||||
self._parser.add_option("", "--gtest_filter", default="",
|
||||
help="which test case to run")
|
||||
self._parser.add_option("", "--gtest_repeat",
|
||||
help="how many times to run each test")
|
||||
self._parser.add_option("", "--gtest_print_time", action="store_true",
|
||||
default=False,
|
||||
help="show how long each test takes")
|
||||
self._parser.add_option("", "--ignore_exit_code", action="store_true",
|
||||
default=False,
|
||||
help="ignore exit code of the test "
|
||||
"(e.g. test failures)")
|
||||
self._parser.add_option("", "--keep_logs", action="store_true",
|
||||
default=False,
|
||||
help="store memory tool logs in the <tool>.logs "
|
||||
"directory instead of /tmp.\nThis can be "
|
||||
"useful for tool developers/maintainers.\n"
|
||||
"Please note that the <tool>.logs directory "
|
||||
"will be clobbered on tool startup.")
|
||||
|
||||
# To add framework- or tool-specific flags, please add a hook using
|
||||
# RegisterOptionParserHook in the corresponding subclass.
|
||||
# See ValgrindTool for an example.
|
||||
for hook in self.option_parser_hooks:
|
||||
hook(self, self._parser)
|
||||
|
||||
def ParseArgv(self, args):
|
||||
self.CreateOptionParser()
|
||||
|
||||
# self._tool_flags will store those tool flags which we don't parse
|
||||
# manually in this script.
|
||||
self._tool_flags = []
|
||||
known_args = []
|
||||
|
||||
""" We assume that the first argument not starting with "-" is a program
|
||||
name and all the following flags should be passed to the program.
|
||||
TODO(timurrrr): customize optparse instead
|
||||
"""
|
||||
while len(args) > 0 and args[0][:1] == "-":
|
||||
arg = args[0]
|
||||
if (arg == "--"):
|
||||
break
|
||||
if self._parser.has_option(arg.split("=")[0]):
|
||||
known_args += [arg]
|
||||
else:
|
||||
self._tool_flags += [arg]
|
||||
args = args[1:]
|
||||
|
||||
if len(args) > 0:
|
||||
known_args += args
|
||||
|
||||
self._options, self._args = self._parser.parse_args(known_args)
|
||||
|
||||
self._timeout = int(self._options.timeout)
|
||||
self._source_dir = self._options.source_dir
|
||||
if self._options.keep_logs:
|
||||
# log_parent_dir has trailing slash if non-empty
|
||||
self.log_dir = self.log_parent_dir + "%s.logs" % self.ToolName()
|
||||
if os.path.exists(self.log_dir):
|
||||
shutil.rmtree(self.log_dir)
|
||||
os.mkdir(self.log_dir)
|
||||
logging.info("Logs are in " + self.log_dir)
|
||||
|
||||
self._ignore_exit_code = self._options.ignore_exit_code
|
||||
if self._options.gtest_filter != "":
|
||||
self._args.append("--gtest_filter=%s" % self._options.gtest_filter)
|
||||
if self._options.gtest_repeat:
|
||||
self._args.append("--gtest_repeat=%s" % self._options.gtest_repeat)
|
||||
if self._options.gtest_print_time:
|
||||
self._args.append("--gtest_print_time")
|
||||
|
||||
return True
|
||||
|
||||
def Setup(self, args):
|
||||
return self.ParseArgv(args)
|
||||
|
||||
def ToolCommand(self):
|
||||
raise NotImplementedError, "This method should be implemented " \
|
||||
"in the tool-specific subclass"
|
||||
|
||||
def Cleanup(self):
|
||||
# You may override it in the tool-specific subclass
|
||||
pass
|
||||
|
||||
def Execute(self):
|
||||
""" Execute the app to be tested after successful instrumentation.
|
||||
Full execution command-line provided by subclassers via proc."""
|
||||
logging.info("starting execution...")
|
||||
proc = self.ToolCommand()
|
||||
for var in self._env:
|
||||
common.PutEnvAndLog(var, self._env[var])
|
||||
return common.RunSubprocess(proc, self._timeout)
|
||||
|
||||
def RunTestsAndAnalyze(self, check_sanity):
|
||||
exec_retcode = self.Execute()
|
||||
analyze_retcode = self.Analyze(check_sanity)
|
||||
|
||||
if analyze_retcode:
|
||||
logging.error("Analyze failed.")
|
||||
logging.info("Search the log for '[ERROR]' to see the error reports.")
|
||||
return analyze_retcode
|
||||
|
||||
if exec_retcode:
|
||||
if self._ignore_exit_code:
|
||||
logging.info("Test execution failed, but the exit code is ignored.")
|
||||
else:
|
||||
logging.error("Test execution failed.")
|
||||
return exec_retcode
|
||||
else:
|
||||
logging.info("Test execution completed successfully.")
|
||||
|
||||
if not analyze_retcode:
|
||||
logging.info("Analysis completed successfully.")
|
||||
|
||||
return 0
|
||||
|
||||
def Main(self, args, check_sanity, min_runtime_in_seconds):
|
||||
"""Call this to run through the whole process: Setup, Execute, Analyze"""
|
||||
start_time = datetime.datetime.now()
|
||||
retcode = -1
|
||||
if self.Setup(args):
|
||||
retcode = self.RunTestsAndAnalyze(check_sanity)
|
||||
shutil.rmtree(self.temp_dir, ignore_errors=True)
|
||||
self.Cleanup()
|
||||
else:
|
||||
logging.error("Setup failed")
|
||||
end_time = datetime.datetime.now()
|
||||
runtime_in_seconds = (end_time - start_time).seconds
|
||||
hours = runtime_in_seconds / 3600
|
||||
seconds = runtime_in_seconds % 3600
|
||||
minutes = seconds / 60
|
||||
seconds = seconds % 60
|
||||
logging.info("elapsed time: %02d:%02d:%02d" % (hours, minutes, seconds))
|
||||
if (min_runtime_in_seconds > 0 and
|
||||
runtime_in_seconds < min_runtime_in_seconds):
|
||||
logging.error("Layout tests finished too quickly. "
|
||||
"It should have taken at least %d seconds. "
|
||||
"Something went wrong?" % min_runtime_in_seconds)
|
||||
retcode = -1
|
||||
return retcode
|
||||
|
||||
def Run(self, args, module, min_runtime_in_seconds=0):
|
||||
MODULES_TO_SANITY_CHECK = ["base"]
|
||||
|
||||
check_sanity = module in MODULES_TO_SANITY_CHECK
|
||||
return self.Main(args, check_sanity, min_runtime_in_seconds)
|
||||
|
||||
|
||||
class ValgrindTool(BaseTool):
|
||||
"""Abstract class for running Valgrind tools.
|
||||
|
||||
Always subclass this and implement ToolSpecificFlags() and
|
||||
ExtendOptionParser() for tool-specific stuff.
|
||||
"""
|
||||
def __init__(self):
|
||||
super(ValgrindTool, self).__init__()
|
||||
self.RegisterOptionParserHook(ValgrindTool.ExtendOptionParser)
|
||||
|
||||
def UseXML(self):
|
||||
# Override if tool prefers nonxml output
|
||||
return True
|
||||
|
||||
def ExtendOptionParser(self, parser):
|
||||
parser.add_option("", "--suppressions", default=[],
|
||||
action="append",
|
||||
help="path to a valgrind suppression file")
|
||||
parser.add_option("", "--indirect", action="store_true",
|
||||
default=False,
|
||||
help="set BROWSER_WRAPPER rather than "
|
||||
"running valgrind directly")
|
||||
parser.add_option("", "--indirect_webkit_layout", action="store_true",
|
||||
default=False,
|
||||
help="set --wrapper rather than running Dr. Memory "
|
||||
"directly.")
|
||||
parser.add_option("", "--trace_children", action="store_true",
|
||||
default=False,
|
||||
help="also trace child processes")
|
||||
parser.add_option("", "--num-callers",
|
||||
dest="num_callers", default=30,
|
||||
help="number of callers to show in stack traces")
|
||||
parser.add_option("", "--generate_dsym", action="store_true",
|
||||
default=False,
|
||||
help="Generate .dSYM file on Mac if needed. Slow!")
|
||||
|
||||
def Setup(self, args):
|
||||
if not BaseTool.Setup(self, args):
|
||||
return False
|
||||
return True
|
||||
|
||||
def ToolCommand(self):
|
||||
"""Get the valgrind command to run."""
|
||||
# Note that self._args begins with the exe to be run.
|
||||
tool_name = self.ToolName()
|
||||
|
||||
# Construct the valgrind command.
|
||||
if 'CHROME_VALGRIND' in os.environ:
|
||||
path = os.path.join(os.environ['CHROME_VALGRIND'], "bin", "valgrind")
|
||||
else:
|
||||
path = "valgrind"
|
||||
proc = [path, "--tool=%s" % tool_name]
|
||||
|
||||
proc += ["--num-callers=%i" % int(self._options.num_callers)]
|
||||
|
||||
if self._options.trace_children:
|
||||
proc += ["--trace-children=yes"]
|
||||
proc += ["--trace-children-skip='*dbus-daemon*'"]
|
||||
proc += ["--trace-children-skip='*dbus-launch*'"]
|
||||
proc += ["--trace-children-skip='*perl*'"]
|
||||
proc += ["--trace-children-skip='*python*'"]
|
||||
# This is really Python, but for some reason Valgrind follows it.
|
||||
proc += ["--trace-children-skip='*lsb_release*'"]
|
||||
|
||||
proc += self.ToolSpecificFlags()
|
||||
proc += self._tool_flags
|
||||
|
||||
suppression_count = 0
|
||||
for suppression_file in self._options.suppressions:
|
||||
if os.path.exists(suppression_file):
|
||||
suppression_count += 1
|
||||
proc += ["--suppressions=%s" % suppression_file]
|
||||
|
||||
if not suppression_count:
|
||||
logging.warning("WARNING: NOT USING SUPPRESSIONS!")
|
||||
|
||||
logfilename = self.log_dir + ("/%s." % tool_name) + "%p"
|
||||
if self.UseXML():
|
||||
proc += ["--xml=yes", "--xml-file=" + logfilename]
|
||||
else:
|
||||
proc += ["--log-file=" + logfilename]
|
||||
|
||||
# The Valgrind command is constructed.
|
||||
|
||||
# Handle --indirect_webkit_layout separately.
|
||||
if self._options.indirect_webkit_layout:
|
||||
# Need to create the wrapper before modifying |proc|.
|
||||
wrapper = self.CreateBrowserWrapper(proc, webkit=True)
|
||||
proc = self._args
|
||||
proc.append("--wrapper")
|
||||
proc.append(wrapper)
|
||||
return proc
|
||||
|
||||
if self._options.indirect:
|
||||
wrapper = self.CreateBrowserWrapper(proc)
|
||||
os.environ["BROWSER_WRAPPER"] = wrapper
|
||||
logging.info('export BROWSER_WRAPPER=' + wrapper)
|
||||
proc = []
|
||||
proc += self._args
|
||||
return proc
|
||||
|
||||
def ToolSpecificFlags(self):
|
||||
raise NotImplementedError, "This method should be implemented " \
|
||||
"in the tool-specific subclass"
|
||||
|
||||
def CreateBrowserWrapper(self, proc, webkit=False):
|
||||
"""The program being run invokes Python or something else that can't stand
|
||||
to be valgrinded, and also invokes the Chrome browser. In this case, use a
|
||||
magic wrapper to only valgrind the Chrome browser. Build the wrapper here.
|
||||
Returns the path to the wrapper. It's up to the caller to use the wrapper
|
||||
appropriately.
|
||||
"""
|
||||
command = " ".join(proc)
|
||||
# Add the PID of the browser wrapper to the logfile names so we can
|
||||
# separate log files for different UI tests at the analyze stage.
|
||||
command = command.replace("%p", "$$.%p")
|
||||
|
||||
(fd, indirect_fname) = tempfile.mkstemp(dir=self.log_dir,
|
||||
prefix="browser_wrapper.",
|
||||
text=True)
|
||||
f = os.fdopen(fd, "w")
|
||||
f.write('#!/bin/bash\n'
|
||||
'echo "Started Valgrind wrapper for this test, PID=$$" >&2\n')
|
||||
|
||||
f.write('DIR=`dirname $0`\n'
|
||||
'TESTNAME_FILE=$DIR/testcase.$$.name\n\n')
|
||||
|
||||
if webkit:
|
||||
# Webkit layout_tests pass the URL as the first line of stdin.
|
||||
f.write('tee $TESTNAME_FILE | %s "$@"\n' % command)
|
||||
else:
|
||||
# Try to get the test case name by looking at the program arguments.
|
||||
# i.e. Chromium ui_tests used --test-name arg.
|
||||
# TODO(timurrrr): This doesn't handle "--test-name Test.Name"
|
||||
# TODO(timurrrr): ui_tests are dead. Where do we use the non-webkit
|
||||
# wrapper now? browser_tests? What do they do?
|
||||
f.write('for arg in $@\ndo\n'
|
||||
' if [[ "$arg" =~ --test-name=(.*) ]]\n then\n'
|
||||
' echo ${BASH_REMATCH[1]} >$TESTNAME_FILE\n'
|
||||
' fi\n'
|
||||
'done\n\n'
|
||||
'%s "$@"\n' % command)
|
||||
|
||||
f.close()
|
||||
os.chmod(indirect_fname, stat.S_IRUSR|stat.S_IXUSR)
|
||||
return indirect_fname
|
||||
|
||||
def CreateAnalyzer(self):
|
||||
raise NotImplementedError, "This method should be implemented " \
|
||||
"in the tool-specific subclass"
|
||||
|
||||
def GetAnalyzeResults(self, check_sanity=False):
|
||||
# Glob all the files in the log directory
|
||||
filenames = glob.glob(self.log_dir + "/" + self.ToolName() + ".*")
|
||||
|
||||
# If we have browser wrapper, the logfiles are named as
|
||||
# "toolname.wrapper_PID.valgrind_PID".
|
||||
# Let's extract the list of wrapper_PIDs and name it ppids
|
||||
ppids = set([int(f.split(".")[-2]) \
|
||||
for f in filenames if re.search("\.[0-9]+\.[0-9]+$", f)])
|
||||
|
||||
analyzer = self.CreateAnalyzer()
|
||||
if len(ppids) == 0:
|
||||
# Fast path - no browser wrapper was set.
|
||||
return analyzer.Report(filenames, None, check_sanity)
|
||||
|
||||
ret = 0
|
||||
for ppid in ppids:
|
||||
testcase_name = None
|
||||
try:
|
||||
f = open(self.log_dir + ("/testcase.%d.name" % ppid))
|
||||
testcase_name = f.read().strip()
|
||||
f.close()
|
||||
wk_layout_prefix="third_party/WebKit/LayoutTests/"
|
||||
wk_prefix_at = testcase_name.rfind(wk_layout_prefix)
|
||||
if wk_prefix_at != -1:
|
||||
testcase_name = testcase_name[wk_prefix_at + len(wk_layout_prefix):]
|
||||
except IOError:
|
||||
pass
|
||||
print "====================================================="
|
||||
print " Below is the report for valgrind wrapper PID=%d." % ppid
|
||||
if testcase_name:
|
||||
print " It was used while running the `%s` test." % testcase_name
|
||||
else:
|
||||
print " You can find the corresponding test"
|
||||
print " by searching the above log for 'PID=%d'" % ppid
|
||||
sys.stdout.flush()
|
||||
|
||||
ppid_filenames = [f for f in filenames \
|
||||
if re.search("\.%d\.[0-9]+$" % ppid, f)]
|
||||
# check_sanity won't work with browser wrappers
|
||||
assert check_sanity == False
|
||||
ret |= analyzer.Report(ppid_filenames, testcase_name)
|
||||
print "====================================================="
|
||||
sys.stdout.flush()
|
||||
|
||||
if ret != 0:
|
||||
print ""
|
||||
print "The Valgrind reports are grouped by test names."
|
||||
print "Each test has its PID printed in the log when the test was run"
|
||||
print "and at the beginning of its Valgrind report."
|
||||
print "Hint: you can search for the reports by Ctrl+F -> `=#`"
|
||||
sys.stdout.flush()
|
||||
|
||||
return ret
|
||||
|
||||
|
||||
# TODO(timurrrr): Split into a separate file.
|
||||
class Memcheck(ValgrindTool):
|
||||
"""Memcheck
|
||||
Dynamic memory error detector for Linux & Mac
|
||||
|
||||
http://valgrind.org/info/tools.html#memcheck
|
||||
"""
|
||||
|
||||
def __init__(self):
|
||||
super(Memcheck, self).__init__()
|
||||
self.RegisterOptionParserHook(Memcheck.ExtendOptionParser)
|
||||
|
||||
def ToolName(self):
|
||||
return "memcheck"
|
||||
|
||||
def ExtendOptionParser(self, parser):
|
||||
parser.add_option("--leak-check", "--leak_check", type="string",
|
||||
default="yes", # --leak-check=yes is equivalent of =full
|
||||
help="perform leak checking at the end of the run")
|
||||
parser.add_option("", "--show_all_leaks", action="store_true",
|
||||
default=False,
|
||||
help="also show less blatant leaks")
|
||||
parser.add_option("", "--track_origins", action="store_true",
|
||||
default=False,
|
||||
help="Show whence uninitialized bytes came. 30% slower.")
|
||||
|
||||
def ToolSpecificFlags(self):
|
||||
ret = ["--gen-suppressions=all", "--demangle=no"]
|
||||
ret += ["--leak-check=%s" % self._options.leak_check]
|
||||
|
||||
if self._options.show_all_leaks:
|
||||
ret += ["--show-reachable=yes"]
|
||||
else:
|
||||
ret += ["--show-possibly-lost=no"]
|
||||
|
||||
if self._options.track_origins:
|
||||
ret += ["--track-origins=yes"]
|
||||
|
||||
# TODO(glider): this is a temporary workaround for http://crbug.com/51716
|
||||
# Let's see whether it helps.
|
||||
if common.IsMac():
|
||||
ret += ["--smc-check=all"]
|
||||
|
||||
return ret
|
||||
|
||||
def CreateAnalyzer(self):
|
||||
use_gdb = common.IsMac()
|
||||
return memcheck_analyze.MemcheckAnalyzer(self._source_dir,
|
||||
self._options.show_all_leaks,
|
||||
use_gdb=use_gdb)
|
||||
|
||||
def Analyze(self, check_sanity=False):
|
||||
ret = self.GetAnalyzeResults(check_sanity)
|
||||
|
||||
if ret != 0:
|
||||
logging.info("Please see http://dev.chromium.org/developers/how-tos/"
|
||||
"using-valgrind for the info on Memcheck/Valgrind")
|
||||
return ret
|
||||
|
||||
|
||||
class ToolFactory:
|
||||
def Create(self, tool_name):
|
||||
if tool_name == "memcheck":
|
||||
return Memcheck()
|
||||
try:
|
||||
platform_name = common.PlatformNames()[0]
|
||||
except common.NotImplementedError:
|
||||
platform_name = sys.platform + "(Unknown)"
|
||||
raise RuntimeError, "Unknown tool (tool=%s, platform=%s)" % (tool_name,
|
||||
platform_name)
|
||||
|
||||
def CreateTool(tool):
|
||||
return ToolFactory().Create(tool)
|
|
@ -1,161 +0,0 @@
|
|||
#!/usr/bin/env python
|
||||
# Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license
|
||||
# that can be found in the LICENSE file in the root of the source
|
||||
# tree. An additional intellectual property rights grant can be found
|
||||
# in the file PATENTS. All contributing project authors may
|
||||
# be found in the AUTHORS file in the root of the source tree.
|
||||
|
||||
"""Runs various WebRTC tests through valgrind_test.py.
|
||||
|
||||
This script inherits the chrome_tests.py in Chrome, but allows running any test
|
||||
instead of only the hard-coded ones. It uses the -t cmdline flag to do this, and
|
||||
only supports specifying a single test for each run.
|
||||
|
||||
Suppression files:
|
||||
The Chrome valgrind directory we use as a DEPS dependency contains the following
|
||||
suppression files:
|
||||
valgrind/memcheck/suppressions.txt
|
||||
valgrind/memcheck/suppressions_mac.txt
|
||||
Since they're referenced from the chrome_tests.py script, we have similar files
|
||||
below the directory of this script. When executing, this script will setup both
|
||||
Chrome's suppression files and our own, so we can easily maintain WebRTC
|
||||
specific suppressions in our own files.
|
||||
"""
|
||||
|
||||
import argparse
|
||||
import logging
|
||||
import optparse
|
||||
import os
|
||||
import sys
|
||||
|
||||
import logging_utils
|
||||
import path_utils
|
||||
|
||||
import chrome_tests
|
||||
|
||||
|
||||
class WebRTCTest(chrome_tests.ChromeTests):
|
||||
"""Class that handles setup of suppressions for WebRTC.
|
||||
|
||||
Everything else is inherited from chrome_tests.ChromeTests.
|
||||
"""
|
||||
|
||||
def __init__(self, test_name, options, args, test_in_chrome_tests):
|
||||
"""Create a WebRTC test.
|
||||
Args:
|
||||
test_name: Short name for the test executable (no path).
|
||||
options: options to pass to ChromeTests.
|
||||
args: args to pass to ChromeTests.
|
||||
test_in_chrome_tests: The name of the test configuration in ChromeTests.
|
||||
"""
|
||||
self._test_name = test_name
|
||||
chrome_tests.ChromeTests.__init__(self, options, args, test_in_chrome_tests)
|
||||
|
||||
def _DefaultCommand(self, tool, exe=None, valgrind_test_args=None):
|
||||
"""Override command-building method so we can add more suppressions."""
|
||||
cmd = chrome_tests.ChromeTests._DefaultCommand(self, tool, exe,
|
||||
valgrind_test_args)
|
||||
|
||||
# Add gtest filters, if found.
|
||||
chrome_tests.ChromeTests._AppendGtestFilter(self, tool, self._test_name,
|
||||
cmd)
|
||||
|
||||
# When ChromeTests._DefaultCommand has executed, it has setup suppression
|
||||
# files based on what's found in the memcheck/ subdirectory of
|
||||
# this script's location. If Mac or Windows is executing, additional
|
||||
# platform specific files have also been added.
|
||||
# Since only the ones located below this directory are added, we must also
|
||||
# add the ones maintained by Chrome, located in ../../tools/valgrind.
|
||||
|
||||
# The idea is to look for --suppression arguments in the cmd list and add a
|
||||
# modified copy of each suppression file, for the corresponding file in
|
||||
# ../../tools/valgrind.
|
||||
script_dir = path_utils.ScriptDir()
|
||||
checkout_src = os.path.abspath(os.path.join(script_dir, os.pardir,
|
||||
os.pardir))
|
||||
new_dir = os.path.join(checkout_src, 'tools', 'valgrind')
|
||||
add_suppressions = []
|
||||
for token in cmd:
|
||||
if '--suppressions' in token:
|
||||
add_suppressions.append(token.replace(script_dir, new_dir))
|
||||
return add_suppressions + cmd
|
||||
|
||||
|
||||
def main(_):
|
||||
parser = optparse.OptionParser(
|
||||
'usage: %prog -b <dir> -t <test> -- <test args>')
|
||||
parser.disable_interspersed_args()
|
||||
parser.add_option('-b', '--build-dir',
|
||||
help=('Location of the compiler output. Can only be used '
|
||||
'when the test argument does not contain this path.'))
|
||||
parser.add_option("--target", help="Debug or Release")
|
||||
parser.add_option('-t', '--test', help='Test to run.')
|
||||
parser.add_option('', '--baseline', action='store_true', default=False,
|
||||
help='Generate baseline data instead of validating')
|
||||
parser.add_option('', '--gtest_filter',
|
||||
help='Additional arguments to --gtest_filter')
|
||||
parser.add_option('', '--gtest_repeat',
|
||||
help='Argument for --gtest_repeat')
|
||||
parser.add_option("--gtest_shuffle", action="store_true", default=False,
|
||||
help="Randomize tests' orders on every iteration.")
|
||||
parser.add_option("--gtest_break_on_failure", action="store_true",
|
||||
default=False,
|
||||
help="Drop in to debugger on assertion failure. Also "
|
||||
"useful for forcing tests to exit with a stack dump "
|
||||
"on the first assertion failure when running with "
|
||||
"--gtest_repeat=-1")
|
||||
parser.add_option('-v', '--verbose', action='store_true', default=False,
|
||||
help='Verbose output - enable debug log messages')
|
||||
parser.add_option('', '--tool', dest='valgrind_tool', default='memcheck',
|
||||
help='Specify a valgrind tool to run the tests under')
|
||||
parser.add_option('', '--tool_flags', dest='valgrind_tool_flags', default='',
|
||||
help='Specify custom flags for the selected valgrind tool')
|
||||
parser.add_option('', '--keep_logs', action='store_true', default=False,
|
||||
help=('Store memory tool logs in the <tool>.logs directory '
|
||||
'instead of /tmp.\nThis can be useful for tool '
|
||||
'developers/maintainers.\nPlease note that the <tool>'
|
||||
'.logs directory will be clobbered on tool startup.'))
|
||||
parser.add_option("--test-launcher-bot-mode", action="store_true",
|
||||
help="run the tests with --test-launcher-bot-mode")
|
||||
parser.add_option("--test-launcher-total-shards", type=int,
|
||||
help="run the tests with --test-launcher-total-shards")
|
||||
parser.add_option("--test-launcher-shard-index", type=int,
|
||||
help="run the tests with --test-launcher-shard-index")
|
||||
options, args = parser.parse_args()
|
||||
|
||||
ignore_parser = argparse.ArgumentParser()
|
||||
# Ignore Chromium-specific flags
|
||||
# TODO(oprypin): Remove (bugs.webrtc.org/8115)
|
||||
ignore_parser.add_argument('--isolated-script-test-output',
|
||||
type=str, default=None)
|
||||
ignore_parser.add_argument('--isolated-script-test-perf-output',
|
||||
type=str, default=None)
|
||||
_, args = ignore_parser.parse_known_args(args)
|
||||
|
||||
if options.verbose:
|
||||
logging_utils.config_root(logging.DEBUG)
|
||||
else:
|
||||
logging_utils.config_root()
|
||||
|
||||
if not options.test:
|
||||
parser.error('--test not specified')
|
||||
|
||||
# Support build dir both with and without the target.
|
||||
if (options.target and options.build_dir and
|
||||
not options.build_dir.endswith(options.target)):
|
||||
options.build_dir = os.path.join(options.build_dir, options.target)
|
||||
|
||||
# If --build_dir is provided, prepend it to the test executable if needed.
|
||||
test_executable = options.test
|
||||
if options.build_dir and not test_executable.startswith(options.build_dir):
|
||||
test_executable = os.path.join(options.build_dir, test_executable)
|
||||
args = [test_executable] + args
|
||||
|
||||
test = WebRTCTest(options.test, options, args, 'cmdline')
|
||||
return test.Run()
|
||||
|
||||
if __name__ == '__main__':
|
||||
return_code = main(sys.argv)
|
||||
sys.exit(return_code)
|
|
@ -1,102 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
|
||||
#
|
||||
# Use of this source code is governed by a BSD-style license
|
||||
# that can be found in the LICENSE file in the root of the source
|
||||
# tree. An additional intellectual property rights grant can be found
|
||||
# in the file PATENTS. All contributing project authors may
|
||||
# be found in the AUTHORS file in the root of the source tree.
|
||||
|
||||
# Set up some paths and re-direct the arguments to webrtc_tests.py
|
||||
|
||||
# This script is a copy of the chrome_tests.sh wrapper script with the following
|
||||
# changes:
|
||||
# - The locate_valgrind.sh of Chromium's Valgrind scripts dir is used to locate
|
||||
# the Valgrind framework install. If it fails a fallback path is used instead
|
||||
# (../../chromium/src/third_party/valgrind/linux_x64) and a warning message
|
||||
# is showed by |show_locate_valgrind_failed_warning|.
|
||||
# - webrtc_tests.py is invoked instead of chrome_tests.py.
|
||||
# - Chromium's Valgrind scripts directory is added to the PYTHONPATH to make it
|
||||
# possible to execute the Python scripts properly.
|
||||
|
||||
export THISDIR=`dirname $0`
|
||||
ARGV_COPY="$@"
|
||||
|
||||
# We need to set CHROME_VALGRIND iff using Memcheck:
|
||||
# tools_webrtc/valgrind/webrtc_tests.sh --tool memcheck
|
||||
# or
|
||||
# tools_webrtc/valgrind/webrtc_tests.sh --tool=memcheck
|
||||
tool="memcheck" # Default to memcheck.
|
||||
while (( "$#" ))
|
||||
do
|
||||
if [[ "$1" == "--tool" ]]
|
||||
then
|
||||
tool="$2"
|
||||
shift
|
||||
elif [[ "$1" =~ --tool=(.*) ]]
|
||||
then
|
||||
tool="${BASH_REMATCH[1]}"
|
||||
fi
|
||||
shift
|
||||
done
|
||||
|
||||
NEEDS_VALGRIND=0
|
||||
|
||||
case "$tool" in
|
||||
"memcheck")
|
||||
NEEDS_VALGRIND=1
|
||||
;;
|
||||
esac
|
||||
|
||||
# For WebRTC, we'll use the locate_valgrind.sh script in Chromium's Valgrind
|
||||
# scripts dir to locate the Valgrind framework install
|
||||
CHROME_VALGRIND_SCRIPTS=$THISDIR/../../tools/valgrind
|
||||
|
||||
if [ "$NEEDS_VALGRIND" == "1" ]
|
||||
then
|
||||
CHROME_VALGRIND=`sh $THISDIR/locate_valgrind.sh`
|
||||
if [ "$CHROME_VALGRIND" = "" ]
|
||||
then
|
||||
CHROME_VALGRIND=../../src/third_party/valgrind/linux_x64
|
||||
echo
|
||||
echo "-------------------- WARNING ------------------------"
|
||||
echo "locate_valgrind.sh failed."
|
||||
echo "Using $CHROME_VALGRIND as a fallback location."
|
||||
echo "This might be because:"
|
||||
echo "1) This is a swarming bot"
|
||||
echo "2) You haven't set up the valgrind binaries correctly."
|
||||
echo "In this case, please make sure you have followed the instructions at"
|
||||
echo "http://www.chromium.org/developers/how-tos/using-valgrind/get-valgrind"
|
||||
echo "Notice: In the .gclient file, you need to add this for the 'src'"
|
||||
echo "solution since our directory structure is different from Chromium's:"
|
||||
echo "\"custom_deps\": {"
|
||||
echo " \"src/third_party/valgrind\":"
|
||||
echo " \"https://chromium.googlesource.com/chromium/deps/valgrind/binaries\","
|
||||
echo "},"
|
||||
echo "-----------------------------------------------------"
|
||||
echo
|
||||
fi
|
||||
echo "Using valgrind binaries from ${CHROME_VALGRIND}"
|
||||
|
||||
PATH="${CHROME_VALGRIND}/bin:$PATH"
|
||||
# We need to set these variables to override default lib paths hard-coded into
|
||||
# Valgrind binary.
|
||||
export VALGRIND_LIB="$CHROME_VALGRIND/lib/valgrind"
|
||||
export VALGRIND_LIB_INNER="$CHROME_VALGRIND/lib/valgrind"
|
||||
|
||||
# Clean up some /tmp directories that might be stale due to interrupted
|
||||
# chrome_tests.py execution.
|
||||
# FYI:
|
||||
# -mtime +1 <- only print files modified more than 24h ago,
|
||||
# -print0/-0 are needed to handle possible newlines in the filenames.
|
||||
echo "Cleanup /tmp from Valgrind stuff"
|
||||
find /tmp -maxdepth 1 \(\
|
||||
-name "vgdb-pipe-*" -or -name "vg_logs_*" -or -name "valgrind.*" \
|
||||
\) -mtime +1 -print0 | xargs -0 rm -rf
|
||||
fi
|
||||
|
||||
# Add Chrome's Valgrind scripts dir to the PYTHON_PATH since it contains
|
||||
# the scripts that are needed for this script to run
|
||||
PYTHONPATH=$THISDIR/../../tools/python/google:$CHROME_VALGRIND_SCRIPTS python \
|
||||
"$THISDIR/webrtc_tests.py" $ARGV_COPY
|
|
@ -385,14 +385,7 @@ TEST_F(RtpRtcpEndToEndTest,
|
|||
TestRtpStatePreservation(true, true);
|
||||
}
|
||||
|
||||
// This test is flaky on linux_memcheck. Disable on all linux bots until
|
||||
// flakyness has been fixed.
|
||||
// https://bugs.chromium.org/p/webrtc/issues/detail?id=7737
|
||||
#if defined(WEBRTC_LINUX)
|
||||
TEST_F(RtpRtcpEndToEndTest, DISABLED_TestFlexfecRtpStatePreservation) {
|
||||
#else
|
||||
TEST_F(RtpRtcpEndToEndTest, TestFlexfecRtpStatePreservation) {
|
||||
#endif
|
||||
class RtpSequenceObserver : public test::RtpRtcpObserver {
|
||||
public:
|
||||
RtpSequenceObserver()
|
||||
|
|
|
@ -137,10 +137,6 @@ declare_args() {
|
|||
# real audio samples.
|
||||
rtc_audio_device_plays_sinus_tone = false
|
||||
|
||||
# When set to true, test targets will declare the files needed to run memcheck
|
||||
# as data dependencies. This is to enable memcheck execution on swarming bots.
|
||||
rtc_use_memcheck = false
|
||||
|
||||
# Disable this to build without support for built-in software codecs.
|
||||
rtc_use_builtin_sw_codecs = true
|
||||
|
||||
|
|
Loading…
Reference in a new issue