Index: mojo/public/tools/bindings/pylib/mojom_tests/parse/run_parser.py |
diff --git a/mojo/public/tools/bindings/pylib/mojom_tests/parse/run_parser.py b/mojo/public/tools/bindings/pylib/mojom_tests/parse/run_parser.py |
deleted file mode 100755 |
index b160de6690f3456375311361f61415d294d3a9dc..0000000000000000000000000000000000000000 |
--- a/mojo/public/tools/bindings/pylib/mojom_tests/parse/run_parser.py |
+++ /dev/null |
@@ -1,36 +0,0 @@ |
-#!/usr/bin/env python |
-# Copyright 2014 The Chromium Authors. All rights reserved. |
-# Use of this source code is governed by a BSD-style license that can be |
-# found in the LICENSE file. |
- |
-"""Simple testing utility to just run the mojom parser.""" |
- |
- |
-import os.path |
-import sys |
- |
-sys.path.insert(0, os.path.join(os.path.dirname(os.path.abspath(__file__)), |
- os.path.pardir, os.path.pardir)) |
- |
-from mojom.parse.parser import Parse, ParseError |
- |
- |
-def main(argv): |
- if len(argv) < 2: |
- print "usage: %s filename" % argv[0] |
- return 0 |
- |
- for filename in argv[1:]: |
- with open(filename) as f: |
- print "%s:" % filename |
- try: |
- print Parse(f.read(), filename) |
- except ParseError, e: |
- print e |
- return 1 |
- |
- return 0 |
- |
- |
-if __name__ == '__main__': |
- sys.exit(main(sys.argv)) |