summaryrefslogtreecommitdiff
path: root/deps/gyp/test/win/gyptest-long-command-line.py
diff options
context:
space:
mode:
Diffstat (limited to 'deps/gyp/test/win/gyptest-long-command-line.py')
-rw-r--r--deps/gyp/test/win/gyptest-long-command-line.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/deps/gyp/test/win/gyptest-long-command-line.py b/deps/gyp/test/win/gyptest-long-command-line.py
deleted file mode 100644
index 8f8b7a3bbd..0000000000
--- a/deps/gyp/test/win/gyptest-long-command-line.py
+++ /dev/null
@@ -1,23 +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 long command lines work.
-"""
-
-import TestGyp
-
-import subprocess
-import sys
-
-if sys.platform == 'win32':
- test = TestGyp.TestGyp(formats=['ninja', 'msvs'])
-
- CHDIR = 'long-command-line'
- test.run_gyp('long-command-line.gyp', chdir=CHDIR)
- test.build('long-command-line.gyp', test.ALL, chdir=CHDIR)
-
- test.pass_test()