File: run_tests

package info (click to toggle)
kedpm 0.5.0-4
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 592 kB
  • sloc: python: 2,883; makefile: 24; xml: 11
file content (21 lines) | stat: -rwxr-xr-x 635 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#! /usr/bin/env python
#
# Copyright (c) 2001 Richard Jones
# This module is free software, and you may redistribute it and/or modify
# under the same terms as Python, so long as this copyright message and
# disclaimer are retained in their original form.
#
# This module is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#
# $Id: run_tests,v 1.1 2003/08/05 18:32:15 kedder Exp $

from test import go
import sys
if len(sys.argv) > 1:
    go(sys.argv[1:])
else:
    go()

# vim: set filetype=python ts=4 sw=4 et si