Lines Matching refs:path
34 parser.add_argument('path',
41 def get_unittests(path):
43 files = glob.glob(os.path.join(path, 'unit-*'))
45 if os.path.isfile(testfile) and os.access(testfile, os.X_OK):
53 unittests = get_unittests(args.path)
56 print("%s: no unit-* test to execute", args.path)
66 test_path = os.path.relpath(test)
79 util.print_test_summary(os.path.join(os.path.relpath(args.path), "unit-*"), total, passed, failed)