media/webrtc/trunk/tools/gyp/test/link-objects/gyptest-all.py

Fri, 16 Jan 2015 18:13:44 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 18:13:44 +0100
branch
TOR_BUG_9701
changeset 14
925c144e1f1f
permissions
-rwxr-xr-x

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()

mercurial