1#!/usr/bin/env python
2
3# Copyright (c) 2012 Google Inc. All rights reserved.
4# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
7"""
8Make sure long command lines work.
9"""
10
11import TestGyp
12
13import subprocess
14import sys
15
16if sys.platform == 'win32':
17  test = TestGyp.TestGyp(formats=['ninja', 'msvs'])
18
19  CHDIR = 'long-command-line'
20  test.run_gyp('long-command-line.gyp', chdir=CHDIR)
21  test.build('long-command-line.gyp', test.ALL, chdir=CHDIR)
22
23  test.pass_test()
24