Bug 797526 - some assertions in nsDOMClassInfo should be fatal in debug builds -...
[gecko.git] / media / webrtc / trunk / tools / gyp / test / msvs / precompiled / gyptest-all.py
blob327ca6d6e106f6fe51b3cd432325a397b9a52f99
1 #!/usr/bin/env python
3 # Copyright (c) 2011 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.
7 """
8 Verifies that precompiled headers can be specified.
9 """
11 import TestGyp
13 test = TestGyp.TestGyp(formats=['msvs'], workdir='workarea_all')
15 test.run_gyp('hello.gyp')
17 test.build('hello.gyp', 'hello')
19 test.run_built_executable('hello', stdout="Hello, world!\nHello, two!\n")
21 test.up_to_date('hello.gyp', test.ALL)
23 test.pass_test()