summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_tkinter/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_tkinter/__init__.py')
-rw-r--r--Lib/test/test_tkinter/__init__.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/Lib/test/test_tkinter/__init__.py b/Lib/test/test_tkinter/__init__.py
new file mode 100644
index 0000000..edcb449
--- /dev/null
+++ b/Lib/test/test_tkinter/__init__.py
@@ -0,0 +1,18 @@
+import os.path
+import unittest
+from test import support
+from test.support import import_helper
+
+
+if support.check_sanitizer(address=True, memory=True):
+ raise unittest.SkipTest("Tests involving libX11 can SEGFAULT on ASAN/MSAN builds")
+
+# Skip test if _tkinter wasn't built.
+import_helper.import_module('_tkinter')
+
+# Skip test if tk cannot be initialized.
+support.requires('gui')
+
+
+def load_tests(*args):
+ return support.load_package_tests(os.path.dirname(__file__), *args)