summaryrefslogtreecommitdiff
path: root/deps/gyp/test/include_dirs/gyptest-all.py
diff options
context:
space:
mode:
Diffstat (limited to 'deps/gyp/test/include_dirs/gyptest-all.py')
-rwxr-xr-xdeps/gyp/test/include_dirs/gyptest-all.py43
1 files changed, 0 insertions, 43 deletions
diff --git a/deps/gyp/test/include_dirs/gyptest-all.py b/deps/gyp/test/include_dirs/gyptest-all.py
deleted file mode 100755
index d64bc6a9ca..0000000000
--- a/deps/gyp/test/include_dirs/gyptest-all.py
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/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 use of include_dirs when using an explicit build target of 'all'.
-"""
-
-import TestGyp
-
-test = TestGyp.TestGyp()
-
-test.run_gyp('includes.gyp', chdir='src')
-
-test.relocate('src', 'relocate/src')
-
-test.build('includes.gyp', test.ALL, chdir='relocate/src')
-
-expect = """\
-Hello from includes.c
-Hello from inc.h
-Hello from include1.h
-Hello from subdir/inc2/include2.h
-Hello from shadow2/shadow.h
-"""
-test.run_built_executable('includes', stdout=expect, chdir='relocate/src')
-
-if test.format == 'xcode':
- chdir='relocate/src/subdir'
-else:
- chdir='relocate/src'
-
-expect = """\
-Hello from subdir/subdir_includes.c
-Hello from subdir/inc.h
-Hello from include1.h
-Hello from subdir/inc2/include2.h
-"""
-test.run_built_executable('subdir_includes', stdout=expect, chdir=chdir)
-
-test.pass_test()