blob: f7291bc4dfdc5dec092949911a3b1349e52c3a56 [file] [log] [blame]
#!/usr/bin/env python
#-------------------------------------------------------------------------------
# test/run_all_unittests.py
#
# Run all unit tests (alternative to running 'python -m unittest discover ...')
#
# Eli Bendersky (eliben@gmail.com)
# This code is in the public domain
#-------------------------------------------------------------------------------
from __future__ import print_function
try:
import unittest2 as unittest
except ImportError:
import unittest
if __name__ == '__main__':
import os
if not os.path.isdir('test'):
print('!! Please execute from the root directory of pyelftools')
else:
tests = unittest.TestLoader().discover('test', 'test*.py', 'test')
unittest.TextTestRunner().run(tests)