| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 |
| 2 # Copyright (c) 2015 Google Inc. All rights reserved. | 3 # Copyright (c) 2015 Google Inc. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 5 | 6 |
| 6 import sys | 7 """ |
| 7 print >>sys.stderr, "This will go to stderr" | 8 Verifies duplicate ldflags are not removed. |
| 9 """ |
| 10 |
| 11 import TestGyp |
| 12 |
| 13 test = TestGyp.TestGyp() |
| 14 test.run_gyp('test.gyp') |
| 15 test.build('test.gyp') |
| 16 |
| 17 test.pass_test() |
| OLD | NEW |