Files
wasmtime/lib/cretonne/meta/cdsl/test_package.py
Jakob Stoklund Olesen c20d7d8f13 Move some utility functions into the cdsl package.
- is_power_of_two
- next_power_of_two

Make sure we run doctests on these functions.
2016-11-11 13:04:30 -08:00

9 lines
171 B
Python

from __future__ import absolute_import
import doctest
import cdsl
def load_tests(loader, tests, ignore):
tests.addTests(doctest.DocTestSuite(cdsl))
return tests