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

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rwxr-xr-x

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     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