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

Issue 895923002: Support MSan/TSan in test isolation and test_env.py (Closed)

Created:
5 years, 10 months ago by earthdok
Modified:
5 years, 10 months ago
CC:
chromium-reviews, chrome-apps-syd-reviews_chromium.org, extensions-reviews_chromium.org, cbentzel+watch_chromium.org, tdresser+watch_chromium.org, peter+watch_chromium.org, tfarina, mlamouri+watch-notifications_chromium.org, jam, jbudorick+watch_chromium.org, feature-media-reviews_chromium.org, darin-cc_chromium.org, yfriedman+watch_chromium.org, piman+watch_chromium.org, chromium-apps-reviews_chromium.org, cc-bugs_chromium.org, erikwright+watch_chromium.org, jdduke+watch_chromium.org, klundberg+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Support MSan/TSan in test isolation and test_env.py BUG=454828 R=maruel@chromium.org,glider@chromium.org TBR=jam@chromium.org Committed: https://crrev.com/eeb0653038f092b18a9ca9b865a2fe80fe625a41 Cr-Commit-Position: refs/heads/master@{#314587}

Patch Set 1 #

Total comments: 9

Patch Set 2 : fix duplicate var #

Total comments: 5

Patch Set 3 : address nits #

Patch Set 4 : list comprehension #

Total comments: 1

Patch Set 5 : fix error #

Unified diffs Side-by-side diffs Delta from patch set Stats (+159 lines, -43 lines) Patch
M base/base.isolate View 3 chunks +10 lines, -3 lines 0 comments Download
M base/base_unittests.isolate View 2 chunks +4 lines, -0 lines 0 comments Download
M build/android/pylib/utils/isolator.py View 1 2 1 chunk +4 lines, -0 lines 0 comments Download
M build/isolate.gypi View 1 2 1 chunk +10 lines, -6 lines 0 comments Download
M cc/cc_unittests.isolate View 3 chunks +6 lines, -0 lines 0 comments Download
M chrome/browser_tests.isolate View 2 chunks +4 lines, -0 lines 0 comments Download
M chrome/interactive_ui_tests.isolate View 2 chunks +4 lines, -0 lines 0 comments Download
M chrome/unit_tests.isolate View 2 chunks +4 lines, -0 lines 0 comments Download
M components/components_browsertests.isolate View 2 chunks +4 lines, -0 lines 0 comments Download
M components/components_unittests.isolate View 3 chunks +6 lines, -0 lines 0 comments Download
M content/content_browsertests.isolate View 2 chunks +4 lines, -0 lines 0 comments Download
M content/content_unittests.isolate View 3 chunks +6 lines, -0 lines 0 comments Download
M extensions/extensions_browsertests.isolate View 2 chunks +4 lines, -0 lines 0 comments Download
M gpu/gpu_unittests.isolate View 3 chunks +6 lines, -0 lines 0 comments Download
M media/media_unittests.isolate View 3 chunks +6 lines, -0 lines 0 comments Download
M net/net_unittests.isolate View 1 chunk +2 lines, -0 lines 0 comments Download
M testing/test_env.py View 1 2 3 4 5 chunks +55 lines, -34 lines 0 comments Download
M ui/app_list/app_list_unittests.isolate View 2 chunks +4 lines, -0 lines 0 comments Download
M ui/base/ui_base_unittests.isolate View 2 chunks +4 lines, -0 lines 0 comments Download
M ui/events/events_unittests.isolate View 2 chunks +4 lines, -0 lines 0 comments Download
M ui/message_center/message_center_unittests.isolate View 2 chunks +4 lines, -0 lines 0 comments Download
M ui/touch_selection/ui_touch_selection_unittests.isolate View 2 chunks +4 lines, -0 lines 0 comments Download

Messages

Total messages: 18 (5 generated)
earthdok
please take a look (M-A on the swarming side, Alex on the sanitizer side) https://codereview.chromium.org/895923002/diff/1/testing/test_env.py ...
5 years, 10 months ago (2015-02-03 17:56:52 UTC) #1
M-A Ruel
isolate part lgtm with nits. It's kind of sad to have to copy paste the ...
5 years, 10 months ago (2015-02-03 18:54:13 UTC) #2
earthdok
https://codereview.chromium.org/895923002/diff/20001/build/android/pylib/utils/isolator.py File build/android/pylib/utils/isolator.py (right): https://codereview.chromium.org/895923002/diff/20001/build/android/pylib/utils/isolator.py#newcode31 build/android/pylib/utils/isolator.py:31: 'lsan': '0', On 2015/02/03 18:54:13, M-A Ruel wrote: > ...
5 years, 10 months ago (2015-02-03 19:07:45 UTC) #3
Alexander Potapenko
https://codereview.chromium.org/895923002/diff/1/testing/test_env.py File testing/test_env.py (right): https://codereview.chromium.org/895923002/diff/1/testing/test_env.py#newcode38 testing/test_env.py:38: internal_flags = frozenset(['--asan=0', '--asan=1', '--lsan=0', '--lsan=1', Shall we replace ...
5 years, 10 months ago (2015-02-04 10:51:46 UTC) #4
earthdok
https://codereview.chromium.org/895923002/diff/1/testing/test_env.py File testing/test_env.py (right): https://codereview.chromium.org/895923002/diff/1/testing/test_env.py#newcode38 testing/test_env.py:38: internal_flags = frozenset(['--asan=0', '--asan=1', '--lsan=0', '--lsan=1', On 2015/02/04 10:51:46, ...
5 years, 10 months ago (2015-02-04 14:34:47 UTC) #5
Alexander Potapenko
lgtm https://codereview.chromium.org/895923002/diff/1/testing/test_env.py File testing/test_env.py (right): https://codereview.chromium.org/895923002/diff/1/testing/test_env.py#newcode53 testing/test_env.py:53: def get_sanitizer_env(cmd, asan, lsan, msan, tsan): On 2015/02/04 ...
5 years, 10 months ago (2015-02-04 16:31:04 UTC) #6
Alexander Potapenko
https://codereview.chromium.org/895923002/diff/50001/testing/test_env.py File testing/test_env.py (right): https://codereview.chromium.org/895923002/diff/50001/testing/test_env.py#newcode102 testing/test_env.py:102: lsan_options += symbolization_options[:] Please fix
5 years, 10 months ago (2015-02-04 16:32:46 UTC) #7
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/895923002/70001
5 years, 10 months ago (2015-02-04 16:41:20 UTC) #10
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/40380)
5 years, 10 months ago (2015-02-04 16:48:29 UTC) #12
earthdok
On 2015/02/04 16:48:29, I haz the power (commit-bot) wrote: > Try jobs failed on following ...
5 years, 10 months ago (2015-02-04 16:50:24 UTC) #14
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/895923002/70001
5 years, 10 months ago (2015-02-04 16:51:10 UTC) #16
commit-bot: I haz the power
Committed patchset #5 (id:70001)
5 years, 10 months ago (2015-02-04 18:18:34 UTC) #17
commit-bot: I haz the power
5 years, 10 months ago (2015-02-04 18:21:57 UTC) #18
Message was sent while issue was closed.
Patchset 5 (id:??) landed as
https://crrev.com/eeb0653038f092b18a9ca9b865a2fe80fe625a41
Cr-Commit-Position: refs/heads/master@{#314587}

Powered by Google App Engine
This is Rietveld 408576698