summaryrefslogtreecommitdiff
path: root/deps/gyp/test/win/gyptest-ml-safeseh.py
diff options
context:
space:
mode:
Diffstat (limited to 'deps/gyp/test/win/gyptest-ml-safeseh.py')
-rw-r--r--deps/gyp/test/win/gyptest-ml-safeseh.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/deps/gyp/test/win/gyptest-ml-safeseh.py b/deps/gyp/test/win/gyptest-ml-safeseh.py
deleted file mode 100644
index ec702b9df2..0000000000
--- a/deps/gyp/test/win/gyptest-ml-safeseh.py
+++ /dev/null
@@ -1,22 +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.
-
-"""
-Make sure the /safeseh option can be passed to ml.
-"""
-
-import TestGyp
-
-import sys
-
-if sys.platform == 'win32':
- test = TestGyp.TestGyp(formats=['ninja'])
-
- CHDIR = 'ml-safeseh'
- test.run_gyp('ml-safeseh.gyp', chdir=CHDIR)
- test.build('ml-safeseh.gyp', test.ALL, chdir=CHDIR)
-
- test.pass_test()