| 1 | n/a | """Usage: runtests.py [-q] [-r] [-v] [-u resources] [mask] |
|---|
| 2 | n/a | |
|---|
| 3 | n/a | Run all tests found in this directory, and print a summary of the results. |
|---|
| 4 | n/a | Command line flags: |
|---|
| 5 | n/a | -q quiet mode: don't prnt anything while the tests are running |
|---|
| 6 | n/a | -r run tests repeatedly, look for refcount leaks |
|---|
| 7 | n/a | -u<resources> |
|---|
| 8 | n/a | Add resources to the lits of allowed resources. '*' allows all |
|---|
| 9 | n/a | resources. |
|---|
| 10 | n/a | -v verbose mode: print the test currently executed |
|---|
| 11 | n/a | -x<test1[,test2...]> |
|---|
| 12 | n/a | Exclude specified tests. |
|---|
| 13 | n/a | mask mask to select filenames containing testcases, wildcards allowed |
|---|
| 14 | n/a | """ |
|---|
| 15 | n/a | import sys |
|---|
| 16 | n/a | import ctypes.test |
|---|
| 17 | n/a | |
|---|
| 18 | n/a | if __name__ == "__main__": |
|---|
| 19 | n/a | sys.exit(ctypes.test.main(ctypes.test)) |
|---|