summaryrefslogtreecommitdiff
path: root/deps/gyp/test/win/gyptest-cl-default-char-is-unsigned.py
diff options
context:
space:
mode:
Diffstat (limited to 'deps/gyp/test/win/gyptest-cl-default-char-is-unsigned.py')
-rw-r--r--deps/gyp/test/win/gyptest-cl-default-char-is-unsigned.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/deps/gyp/test/win/gyptest-cl-default-char-is-unsigned.py b/deps/gyp/test/win/gyptest-cl-default-char-is-unsigned.py
deleted file mode 100644
index d20f6742f5..0000000000
--- a/deps/gyp/test/win/gyptest-cl-default-char-is-unsigned.py
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/env python
-
-# Copyright (c) 2012 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.
-
-"""
-Make sure DefaultCharIsUnsigned option is functional.
-"""
-
-import TestGyp
-
-import sys
-
-if sys.platform == 'win32':
- test = TestGyp.TestGyp(formats=['msvs', 'ninja'])
-
- CHDIR = 'compiler-flags'
- test.run_gyp('default-char-is-unsigned.gyp', chdir=CHDIR)
- test.build('default-char-is-unsigned.gyp', test.ALL, chdir=CHDIR)
-
- test.pass_test()