From 5f8de423f190bbb79a62f804151bc24824fa32d8 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Fri, 2 Feb 2018 04:16:08 -0500 Subject: Add m-esr52 at 52.6.0 --- .../test/subdirectory/gyptest-SYMROOT-default.py | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100755 media/webrtc/trunk/tools/gyp/test/subdirectory/gyptest-SYMROOT-default.py (limited to 'media/webrtc/trunk/tools/gyp/test/subdirectory/gyptest-SYMROOT-default.py') diff --git a/media/webrtc/trunk/tools/gyp/test/subdirectory/gyptest-SYMROOT-default.py b/media/webrtc/trunk/tools/gyp/test/subdirectory/gyptest-SYMROOT-default.py new file mode 100755 index 000000000..879665090 --- /dev/null +++ b/media/webrtc/trunk/tools/gyp/test/subdirectory/gyptest-SYMROOT-default.py @@ -0,0 +1,37 @@ +#!/usr/bin/env python + +# Copyright (c) 2009 Google Inc. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +""" +Verifies building a target and a subsidiary dependent target from a +.gyp file in a subdirectory, without specifying an explicit output build +directory, and using the generated solution or project file at the top +of the tree as the entry point. + +The configuration sets the Xcode SYMROOT variable and uses --depth= +to make Xcode behave like the other build tools--that is, put all +built targets in a single output build directory at the top of the tree. +""" + +import TestGyp + +test = TestGyp.TestGyp() + +test.run_gyp('prog1.gyp', '-Dset_symroot=1', '--depth=.', chdir='src') + +test.relocate('src', 'relocate/src') + +# Suppress the test infrastructure's setting SYMROOT on the command line. +test.build('prog1.gyp', SYMROOT=None, chdir='relocate/src') + +test.run_built_executable('prog1', + stdout="Hello from prog1.c\n", + chdir='relocate/src') + +test.run_built_executable('prog2', + stdout="Hello from prog2.c\n", + chdir='relocate/src') + +test.pass_test() -- cgit v1.2.3