blob: bf9a0b5aaa4c24199d5a30a4b8c4b4d023eaad01 [file] [log] [blame]
Ben Murdoch109988c2016-05-18 11:27:45 +01001#!/usr/bin/env python
2
3# Copyright (c) 2009 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"""
8Verified things don't explode when there are targets without outputs.
9"""
10
11import TestGyp
12
13# TODO(evan): in ninja when there are no targets, there is no 'all'
14# target either. Disabling this test for now.
15test = TestGyp.TestGyp(formats=['!ninja'])
16
17test.run_gyp('nooutput.gyp', chdir='src')
18test.relocate('src', 'relocate/src')
19test.build('nooutput.gyp', chdir='relocate/src')
20
21test.pass_test()