1#!/usr/bin/env python
2
3# Copyright (c) 2013 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.
6
7"""
8Verifies inclusion of $HOME/.gyp_new/include.gypi works when GYP_CONFIG_DIR
9is set.
10"""
11
12import os
13import TestGyp
14
15test = TestGyp.TestGyp()
16
17os.environ['HOME'] = os.path.abspath('home')
18os.environ['GYP_CONFIG_DIR'] = os.path.join(os.path.abspath('home2'),
19                                            '.gyp_new')
20
21test.run_gyp('all.gyp', chdir='src')
22
23# After relocating, we should still be able to build (build file shouldn't
24# contain relative reference to ~/.gyp_new/include.gypi)
25test.relocate('src', 'relocate/src')
26
27test.build('all.gyp', test.ALL, chdir='relocate/src')
28
29test.run_built_executable('printfoo',
30                          chdir='relocate/src',
31                          stdout='FOO is fromhome3\n')
32
33test.pass_test()
34