Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Unified Diff: source/test/depstest/depstest.py

Issue 1621843002: ICU 56 update step 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@561
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « source/test/depstest/dependencies.txt ('k') | source/test/hdrtst/cxxfiles.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: source/test/depstest/depstest.py
diff --git a/source/test/depstest/depstest.py b/source/test/depstest/depstest.py
index 51bdf2b58d469fc53f4008c16e4a04033fbb5e99..0dc8cfe3ced3cdbae4c325f1c2e7aa6849cae4af 100755
--- a/source/test/depstest/depstest.py
+++ b/source/test/depstest/depstest.py
@@ -1,7 +1,7 @@
#! /usr/bin/python
# -*- coding: utf-8 -*-
#
-# Copyright (C) 2011-2014, International Business Machines
+# Copyright (C) 2011-2015, International Business Machines
# Corporation and others. All Rights Reserved.
#
# file name: depstest.py
@@ -60,7 +60,9 @@ def _ReadObjFile(root_path, library_name, obj_name):
# Ignore symbols like '__cxa_pure_virtual',
# 'vtable for __cxxabiv1::__si_class_type_info' or
# 'DW.ref.__gxx_personality_v0'.
- if name.startswith("__cxa") or "__cxxabi" in name or "__gxx" in name:
+ # '__dso_handle' belongs to __cxa_atexit().
+ if (name.startswith("__cxa") or "__cxxabi" in name or "__gxx" in name or
+ name == "__dso_handle"):
_ignored_symbols.add(name)
continue
type = fields[2].strip()
« no previous file with comments | « source/test/depstest/dependencies.txt ('k') | source/test/hdrtst/cxxfiles.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698