Fri, 16 Jan 2015 18:13:44 +0100
Integrate suggestion from review to improve consistency with existing code.
1 #!/usr/bin/env python
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.
7 """
8 Test variable expansion of '<!()' syntax commands.
9 """
11 import os
13 import TestGyp
15 test = TestGyp.TestGyp(format='gypd')
17 expect = test.read('commands.gyp.stdout').replace('\r', '')
19 test.run_gyp('commands.gyp',
20 '--debug', 'variables',
21 stdout=expect, ignore_line_numbers=True)
23 # Verify the commands.gypd against the checked-in expected contents.
24 #
25 # Normally, we should canonicalize line endings in the expected
26 # contents file setting the Subversion svn:eol-style to native,
27 # but that would still fail if multiple systems are sharing a single
28 # workspace on a network-mounted file system. Consequently, we
29 # massage the Windows line endings ('\r\n') in the output to the
30 # checked-in UNIX endings ('\n').
32 contents = test.read('commands.gypd').replace('\r', '')
33 expect = test.read('commands.gypd.golden').replace('\r', '')
34 if not test.match(contents, expect):
35 print "Unexpected contents of `commands.gypd'"
36 test.diff(expect, contents, 'commands.gypd ')
37 test.fail_test()
39 test.pass_test()