diff options
author | jeremy@chromium.org <jeremy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-29 20:46:04 +0000 |
---|---|---|
committer | jeremy@chromium.org <jeremy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-29 20:46:04 +0000 |
commit | 307f536386aad3abf7c0978b892ffac059eb0be5 (patch) | |
tree | 9e59dd49ecdd90a63e007c37bdd27cc045549138 /base/base_unittests.scons | |
parent | fcbaeacfce08303236709e2603e64fc40bdba435 (diff) | |
download | chromium_src-307f536386aad3abf7c0978b892ffac059eb0be5.zip chromium_src-307f536386aad3abf7c0978b892ffac059eb0be5.tar.gz chromium_src-307f536386aad3abf7c0978b892ffac059eb0be5.tar.bz2 |
1) Add a new MULTIPROCESS_TEST_MAIN macro to store child process names
in a lookup table.
Previously we were using different mechanisms on each platform to look up
child process names at runtime. This broke on OS X where we strip the symbol
table on release executables.
2) Enable process_util_unittest on OS X.
Review URL: http://codereview.chromium.org/8864
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4165 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/base_unittests.scons')
-rw-r--r-- | base/base_unittests.scons | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/base/base_unittests.scons b/base/base_unittests.scons index 285f195..d247eef 100644 --- a/base/base_unittests.scons +++ b/base/base_unittests.scons @@ -60,19 +60,10 @@ if env['PLATFORM'] == 'win32': ) if env['PLATFORM'] == 'posix': - # Explicity list the functions we want to export from the base_unittest - # executable in the following file. - env['EXPORTED_SYMBOLS_FILE'] = \ - env.File('$CHROME_SRC_DIR/base/base_unittest_exported_symbols.version') - env.Append( LIBS = [ 'event', ], - LINKFLAGS = [ - '-Xlinker', - '--dynamic-list=$EXPORTED_SYMBOLS_FILE' - ], ) # These test files work on *all* platforms; tests that don't work |