diff options
author | kochi <kochi@chromium.org> | 2015-01-21 23:20:19 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-01-22 07:21:00 +0000 |
commit | 217c53ca8128370c64a5d1a4ba15cb4cea5564ac (patch) | |
tree | 2c9c83dfddd5aafe4b5ceaabbcc0265dd168c578 /courgette | |
parent | 88c7b3339b207cd3424f5478b5e672485617ca44 (diff) | |
download | chromium_src-217c53ca8128370c64a5d1a4ba15cb4cea5564ac.zip chromium_src-217c53ca8128370c64a5d1a4ba15cb4cea5564ac.tar.gz chromium_src-217c53ca8128370c64a5d1a4ba15cb4cea5564ac.tar.bz2 |
Revert of Revert of Isolate courgette_unittests (patchset #1 id:1 of https://codereview.chromium.org/865133002/)
Reason for revert:
The revert might have been wrong: reverting the revert again.
BUG=450912
Original issue's description:
> Revert of Isolate courgette_unittests (patchset #1 id:1 of https://codereview.chromium.org/868433002/)
>
> Reason for revert:
> http://crbug.com/450912
>
> courget_unittests is failing on Win7(dbg) bots since build#34639.
> http://build.chromium.org/p/chromium.win/builders/Win7%20Tests%20%28dbg%29%281%29/builds/34639
>
> Original issue's description:
> > Isolate courgette_unittests
> >
> > Adding link to http://www.chromium.org/developers/testing/isolated-testing/for-swes for my future self.
> >
> > R=maruel@chromium.org,jochen@chromium.org
> > TBR=jam@chromium.org
> > BUG=98637
> >
> > Committed: https://crrev.com/c9bd3b9a5667a36c05592ec9d16533be91b4567c
> > Cr-Commit-Position: refs/heads/master@{#312531}
>
> TBR=jam@chromium.org,jochen@chromium.org,maruel@chromium.org,scottmg@chromium.org
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=98637
>
> Committed: https://crrev.com/1bdeeeb5eae42e95f82806da9351d77a05403e67
> Cr-Commit-Position: refs/heads/master@{#312571}
TBR=jam@chromium.org,jochen@chromium.org,maruel@chromium.org,scottmg@chromium.org
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=98637
Review URL: https://codereview.chromium.org/867523002
Cr-Commit-Position: refs/heads/master@{#312577}
Diffstat (limited to 'courgette')
-rw-r--r-- | courgette/courgette.gyp | 17 | ||||
-rw-r--r-- | courgette/courgette_unittests.isolate | 14 |
2 files changed, 31 insertions, 0 deletions
diff --git a/courgette/courgette.gyp b/courgette/courgette.gyp index 52db0fb..bc8b7bb 100644 --- a/courgette/courgette.gyp +++ b/courgette/courgette.gyp @@ -213,5 +213,22 @@ }, ], }], + ['test_isolation_mode != "noop"', { + 'targets': [ + { + 'target_name': 'courgette_unittests_run', + 'type': 'none', + 'dependencies': [ + 'courgette_unittests', + ], + 'includes': [ + '../build/isolate.gypi', + ], + 'sources': [ + 'courgette_unittests.isolate', + ], + }, + ], + }], ], } diff --git a/courgette/courgette_unittests.isolate b/courgette/courgette_unittests.isolate new file mode 100644 index 0000000..244cde1 --- /dev/null +++ b/courgette/courgette_unittests.isolate @@ -0,0 +1,14 @@ +# 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. +{ + 'variables': { + 'files': [ + '<(PRODUCT_DIR)/courgette_unittests<(EXECUTABLE_SUFFIX)', + 'testdata/', + ], + 'command': [ + '<(PRODUCT_DIR)/courgette_unittests<(EXECUTABLE_SUFFIX)', + ], + }, +} |