| Index: test/win/gyptest-link-unsupported-manifest.py
|
| diff --git a/test/win/gyptest-link-unsupported-manifest.py b/test/win/gyptest-link-unsupported-manifest.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..8f7e12bc8c514e0748086fd4d93e73b1e889b515
|
| --- /dev/null
|
| +++ b/test/win/gyptest-link-unsupported-manifest.py
|
| @@ -0,0 +1,27 @@
|
| +#!/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.
|
| +
|
| +"""
|
| +Make sure we error out if #pragma comments are used to modify manifests.
|
| +"""
|
| +
|
| +import TestGyp
|
| +
|
| +import sys
|
| +
|
| +if sys.platform == 'win32':
|
| + # This assertion only applies to the ninja build.
|
| + test = TestGyp.TestGyp(formats=['ninja'])
|
| +
|
| + CHDIR = 'linker-flags'
|
| + test.run_gyp('unsupported-manifest.gyp', chdir=CHDIR)
|
| +
|
| + # Just needs to fail to build.
|
| + test.build('unsupported-manifest.gyp',
|
| + 'test_unsupported', chdir=CHDIR, status=1)
|
| + test.must_not_exist(test.built_file_path('test_unsupported.exe', chdir=CHDIR))
|
| +
|
| + test.pass_test()
|
|
|