• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 rule names with non-"normal" characters in them don't cause
9broken build files. This test was originally causing broken .ninja files.
10"""
11
12import TestGyp
13
14test = TestGyp.TestGyp()
15test.run_gyp('sanitize-rule-names.gyp')
16test.build('sanitize-rule-names.gyp', test.ALL)
17test.pass_test()
18