Commit 8270dce1 authored by Jeremy Hylton's avatar Jeremy Hylton

Don't call test.regrtest.main() with explicit list of test cases, so

that main() can handle argument processing entirely.

Add test_AqAlg to list of tests.
parent 3ca730c8
......@@ -4,10 +4,14 @@ import os
import sys
import test.regrtest
ec_tests = ["test_MultiMapping", "test_Sync", "test_ThreadLock",
"test_acquisition", "test_add", "test_binding",
"test_explicit_acquisition", "test_func_attr",
"test_method_hook"]
ec_tests = ["test_AqAlg", "test_MultiMapping", "test_Sync",
"test_ThreadLock", "test_acquisition", "test_add",
"test_binding", "test_explicit_acquisition",
"test_func_attr", "test_method_hook"]
ec_testdir = os.path.split(sys.argv[0])[0]
test.regrtest.main(tests=ec_tests, testdir=ec_testdir)
ec_testdir = os.path.split(sys.argv[0])[0] or '.'
test.regrtest.STDTESTS = ec_tests
test.regrtest.NOTTESTS = []
test.regrtest.main(testdir=ec_testdir)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment