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

Side by Side Diff: test/msvs/multiple_actions_error_handling/gyptest.py

Issue 335273006: msvs: ensure that failing actions make the build fail with multiple actions (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: Created 6 years, 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « test/msvs/multiple_actions_error_handling/actions.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/env python
2
3 # Copyright (c) 2014 Google Inc. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
6
7 """
8 Verifies that failing actions make the build fail reliably, even when there
9 are multiple actions in one project.
10 """
11
12 import os
13 import sys
14 import TestGyp
15 import TestCmd
16
17 test = TestGyp.TestGyp(formats=['msvs'], workdir='workarea_all')
18
19 test.run_gyp('actions.gyp')
20 test.build('actions.gyp',
21 target='actions-test',
22 status=1,
23 stdout=r'.*"cmd\.exe" exited with code 1\..*',
24 match=TestCmd.match_re_dotall)
25
26 test.pass_test()
OLDNEW
« no previous file with comments | « test/msvs/multiple_actions_error_handling/actions.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698