You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
546 B
21 lines
546 B
import unittest
|
|
from test import support
|
|
from test.support import import_helper
|
|
from test.support import check_sanitizer
|
|
|
|
if check_sanitizer(address=True, memory=True):
|
|
raise unittest.SkipTest("Tests involvin 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(loader, tests, pattern):
|
|
return loader.discover('tkinter.test.test_tkinter')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|