Chromium Code Reviews| Index: test/mac/gyptest-bundle-resources.py |
| =================================================================== |
| --- test/mac/gyptest-bundle-resources.py (revision 0) |
| +++ test/mac/gyptest-bundle-resources.py (revision 0) |
| @@ -0,0 +1,34 @@ |
| + |
|
Mark Mentovai
2013/09/04 21:16:34
Blank line.
Nico
2013/09/04 21:20:46
Done.
|
| +#!/usr/bin/env python |
| + |
| +# Copyright (c) 2013 Google Inc. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +""" |
| +Verifies things related to bundle resources. |
| +""" |
| + |
| +import TestGyp |
| + |
| +import sys |
| + |
| +if sys.platform == 'darwin': |
| + # set |match| to ignore build stderr output. |
| + test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode']) |
| + |
| + CHDIR = 'bundle-resources' |
| + test.run_gyp('test.gyp', chdir=CHDIR) |
| + |
| + test.build('test.gyp', test.ALL, chdir=CHDIR) |
| + |
| + test.built_file_must_match('resource.app/Contents/Resources/secret.txt', |
| + 'abc\n', chdir=CHDIR) |
| + test.built_file_must_match('source_rule.app/Contents/Resources/secret.txt', |
| + 'ABC\n', chdir=CHDIR) |
| + |
| + # TODO(thakis): This currently fails with ninja and mac, fix. |
| + #test.built_file_must_match('resource_rule.app/Contents/Resources/secret.txt', |
| + #'ABC\n', chdir=CHDIR) |
|
Mark Mentovai
2013/09/04 21:16:34
Weird place to put the #, I almost missed it there
Nico
2013/09/04 21:20:46
Done.
|
| + |
| + test.pass_test() |