Fri, 16 Jan 2015 18:13:44 +0100
Integrate suggestion from review to improve consistency with existing code.
michael@0 | 1 | #!/usr/bin/env python |
michael@0 | 2 | |
michael@0 | 3 | # Copyright (c) 2011 Google Inc. All rights reserved. |
michael@0 | 4 | # Use of this source code is governed by a BSD-style license that can be |
michael@0 | 5 | # found in the LICENSE file. |
michael@0 | 6 | |
michael@0 | 7 | """ |
michael@0 | 8 | Put an object file on the sources list. |
michael@0 | 9 | Expect the result to link ok. |
michael@0 | 10 | """ |
michael@0 | 11 | |
michael@0 | 12 | import TestGyp |
michael@0 | 13 | |
michael@0 | 14 | import sys |
michael@0 | 15 | |
michael@0 | 16 | if sys.platform != 'darwin': |
michael@0 | 17 | # Currently only works under the linux make build. |
michael@0 | 18 | test = TestGyp.TestGyp(formats=['make']) |
michael@0 | 19 | |
michael@0 | 20 | test.run_gyp('link-objects.gyp') |
michael@0 | 21 | |
michael@0 | 22 | test.build('link-objects.gyp', test.ALL) |
michael@0 | 23 | |
michael@0 | 24 | test.run_built_executable('link-objects', stdout="PASS\n") |
michael@0 | 25 | |
michael@0 | 26 | test.up_to_date('link-objects.gyp', test.ALL) |
michael@0 | 27 | |
michael@0 | 28 | test.pass_test() |