diff options
author | maruel <maruel@chromium.org> | 2015-06-30 13:05:19 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-06-30 20:05:46 +0000 |
commit | 350eee02c28b43a7c7f1c685d7437f09f3db613b (patch) | |
tree | 70ae994d55ac7e86665575197270ac15e7e8ac93 /printing | |
parent | 358f1af102ca23b2fd9c907cbe24af7078d5b830 (diff) | |
download | chromium_src-350eee02c28b43a7c7f1c685d7437f09f3db613b.zip chromium_src-350eee02c28b43a7c7f1c685d7437f09f3db613b.tar.gz chromium_src-350eee02c28b43a7c7f1c685d7437f09f3db613b.tar.bz2 |
Convert printing_unittests to run exclusively on Swarming
0 configs already ran on Swarming
28 used to run locally and were converted:
- chromium.chromiumos.json: Linux ChromiumOS Ozone Tests (1)
- chromium.chromiumos.json: Linux ChromiumOS Tests (1)
- chromium.chromiumos.json: Linux ChromiumOS Tests (dbg)(1)
- chromium.fyi.json: CrWinAsan tester
- chromium.fyi.json: CrWinAsan(dll) tester
- chromium.fyi.json: Linux Trusty
- chromium.fyi.json: Linux Trusty (dbg)
- chromium.linux.json: Linux Tests
- chromium.linux.json: Linux Tests (dbg)(1)
- chromium.linux.json: Linux Tests (dbg)(1)(32)
- chromium.mac.json: Mac10.10 Tests
- chromium.mac.json: Mac10.6 Tests
- chromium.mac.json: Mac10.8 Tests
- chromium.mac.json: Mac10.9 Tests
- chromium.mac.json: Mac10.9 Tests (dbg)
- chromium.memory.fyi.json: Linux ChromeOS MSan Tests
- chromium.memory.fyi.json: Linux MSan Tests
- chromium.memory.fyi.json: Linux TSan Tests
- chromium.memory.json: Linux ASan LSan Tests (1)
- chromium.memory.json: Linux Chromium OS ASan LSan Tests (1)
- chromium.memory.json: Mac ASan 64 Tests (1)
- chromium.webkit.json: Linux ChromiumOS Tests (1)
- chromium.webkit.json: Linux ChromiumOS Tests (dbg)(1)
- chromium.win.json: Vista Tests (1)
- chromium.win.json: Win 7 Tests x64 (1)
- chromium.win.json: Win7 Tests (1)
- chromium.win.json: Win7 Tests (dbg)(1)
- chromium.win.json: XP Tests (1)
Ran:
./manage.py --convert printing_unittests
R=dpranke@chromium.org,vitalybuka@chromium.org
BUG=98637
NOTRY=true
Review URL: https://codereview.chromium.org/1217243003
Cr-Commit-Position: refs/heads/master@{#336859}
Diffstat (limited to 'printing')
-rw-r--r-- | printing/printing.gyp | 17 | ||||
-rw-r--r-- | printing/printing_unittests.isolate | 27 |
2 files changed, 44 insertions, 0 deletions
diff --git a/printing/printing.gyp b/printing/printing.gyp index eb4001d..e87fe9c 100644 --- a/printing/printing.gyp +++ b/printing/printing.gyp @@ -317,5 +317,22 @@ } ] }], + ['test_isolation_mode != "noop"', { + 'targets': [ + { + 'target_name': 'printing_unittests_run', + 'type': 'none', + 'dependencies': [ + 'printing_unittests', + ], + 'includes': [ + '../build/isolate.gypi', + ], + 'sources': [ + 'printing_unittests.isolate', + ], + }, + ], + }], ] } diff --git a/printing/printing_unittests.isolate b/printing/printing_unittests.isolate new file mode 100644 index 0000000..e0ab01b --- /dev/null +++ b/printing/printing_unittests.isolate @@ -0,0 +1,27 @@ +# Copyright 2015 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. +{ + 'conditions': [ + ['OS=="linux" or OS=="mac" or OS=="win"', { + 'variables': { + 'command': [ + '../testing/test_env.py', + '<(PRODUCT_DIR)/printing_unittests<(EXECUTABLE_SUFFIX)', + '--brave-new-test-launcher', + '--test-launcher-bot-mode', + '--asan=<(asan)', + '--msan=<(msan)', + '--tsan=<(tsan)', + ], + 'files': [ + '../testing/test_env.py', + '<(PRODUCT_DIR)/printing_unittests<(EXECUTABLE_SUFFIX)', + ], + }, + }], + ], + 'includes': [ + '../base/base.isolate', + ], +} |