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) 2011 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 Put an object file on the sources list.
9 Expect the result to link ok.
10 """
12 import TestGyp
14 import sys
16 if sys.platform != 'darwin':
17 # Currently only works under the linux make build.
18 test = TestGyp.TestGyp(formats=['make'])
20 test.run_gyp('link-objects.gyp')
22 test.build('link-objects.gyp', test.ALL)
24 test.run_built_executable('link-objects', stdout="PASS\n")
26 test.up_to_date('link-objects.gyp', test.ALL)
28 test.pass_test()