1#!/usr/bin/env python 2# Copyright 2014 The Chromium Authors. All rights reserved. 3# Use of this source code is governed by a BSD-style license that can be 4# found in the LICENSE file. 5 6import os 7import sys 8 9_script_dir = os.path.dirname(os.path.abspath(__file__)) 10sys.path.insert(0, os.path.join(_script_dir, "pylib")) 11 12from mojo_python_tests_runner import MojoPythonTestRunner 13 14 15def main(): 16 runner = MojoPythonTestRunner(os.path.join('mojo', 'public', 'tools', 17 'bindings', 'pylib')) 18 sys.exit(runner.run()) 19 20 21if __name__ == '__main__': 22 sys.exit(main()) 23