summaryrefslogtreecommitdiff
path: root/scripts/run_exhaustive_tests.py
diff options
context:
space:
mode:
authorJames Godfrey-Kittle <jamesgk@google.com>2015-10-06 12:26:57 -0700
committerJames Godfrey-Kittle <jamesgk@google.com>2015-10-06 12:31:45 -0700
commit70927d037377b501c9d53dd4e993106977ef722b (patch)
tree6b0a4946c200c4f3d251dd4359774dae6c8bbd9c /scripts/run_exhaustive_tests.py
parent561fd3fd27641a5c89a5eec729234e2c786e8082 (diff)
Use common tests from nototools
Diffstat (limited to 'scripts/run_exhaustive_tests.py')
-rwxr-xr-xscripts/run_exhaustive_tests.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/scripts/run_exhaustive_tests.py b/scripts/run_exhaustive_tests.py
index 19eb960..10dd2d7 100755
--- a/scripts/run_exhaustive_tests.py
+++ b/scripts/run_exhaustive_tests.py
@@ -17,17 +17,18 @@
"""Time-consuming tests for general health of the fonts."""
import unittest
+from nototools.unittests import font_tests
-FONTS = common_tests.load_fonts(
+FONTS = font_tests.load_fonts(
['out/RobotoTTF/*.ttf', 'out/RobotoCondensedTTF/*.ttf'],
expected_count=18)
-class TestSpacingMarks(common_tests.TestSpacingMarks):
+class TestSpacingMarks(font_tests.TestSpacingMarks):
loaded_fonts = FONTS
-class TestSoftDottedChars(common_tests.TestSoftDottedChars):
+class TestSoftDottedChars(font_tests.TestSoftDottedChars):
loaded_fonts = FONTS
# FIXME: Test is currently disabled, since the fonts fail it
test_combinations = None