File: regrtest.py

package info (click to toggle)
python-extclass 1.2.0zope-2.5.1-5
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 540 kB
  • ctags: 719
  • sloc: ansic: 5,769; python: 302; makefile: 46
file content (17 lines) | stat: -rw-r--r-- 433 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#! /usr/bin/env python

import os
import sys
import test.regrtest

ec_tests = ["test_AqAlg", "test_MultiMapping", "test_Sync",
            "test_ThreadLock", "test_acquisition", "test_add",
            "test_binding", "test_explicit_acquisition",
            "test_method_hook"]

ec_testdir = os.path.split(sys.argv[0])[0] or '.'

test.regrtest.STDTESTS = ec_tests
test.regrtest.NOTTESTS = []

test.regrtest.main(testdir=ec_testdir)