summaryrefslogtreecommitdiff
path: root/tools/gyp/test/win/gyptest-system-include.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gyp/test/win/gyptest-system-include.py')
-rw-r--r--tools/gyp/test/win/gyptest-system-include.py21
1 files changed, 0 insertions, 21 deletions
diff --git a/tools/gyp/test/win/gyptest-system-include.py b/tools/gyp/test/win/gyptest-system-include.py
deleted file mode 100644
index 9a47d98538..0000000000
--- a/tools/gyp/test/win/gyptest-system-include.py
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/usr/bin/env python
-
-# Copyright (c) 2014 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.
-
-"""
-Checks that msvs_system_include_dirs works.
-"""
-
-import TestGyp
-
-import sys
-
-if sys.platform == 'win32':
- test = TestGyp.TestGyp(formats=['msvs', 'ninja'])
-
- CHDIR = 'system-include'
- test.run_gyp('test.gyp', chdir=CHDIR)
- test.build('test.gyp', test.ALL, chdir=CHDIR)
- test.pass_test()