blob: 05ea7cee16e323879f2eb30406bc9ab1ac7a442e [file] [log] [blame]
Ben Murdoch097c5b22016-05-18 11:27:45 +01001#!/usr/bin/env python
2
3# Copyright (c) 2012 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""" Verifies that VS variables that require special variables are expanded
8correctly. """
9
10import sys
11import TestGyp
12
13if sys.platform == 'win32':
14 test = TestGyp.TestGyp()
15
16 test.run_gyp('special-variables.gyp', chdir='src')
17 test.build('special-variables.gyp', test.ALL, chdir='src')
18 test.pass_test()