diff options
Diffstat (limited to 'Lib/test/test_gdb/__init__.py')
-rw-r--r-- | Lib/test/test_gdb/__init__.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Lib/test/test_gdb/__init__.py b/Lib/test/test_gdb/__init__.py new file mode 100644 index 0000000..0261f59 --- /dev/null +++ b/Lib/test/test_gdb/__init__.py @@ -0,0 +1,10 @@ +# Verify that gdb can pretty-print the various PyObject* types +# +# The code for testing gdb was adapted from similar work in Unladen Swallow's +# Lib/test/test_jit_gdb.py + +import os +from test.support import load_package_tests + +def load_tests(*args): + return load_package_tests(os.path.dirname(__file__), *args) |