blob: e1a62f2196135936a740b8f7915a90bb7e21a6bc [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
#-------------------------------------------------------------------------------
try:
import unittest2 as unittest
except ImportError:
import unittest
if __name__ == '__main__':
try:
tests = unittest.TestLoader().discover('test', 'test*.py', 'test')
unittest.TextTestRunner().run(tests)
except ImportError as err:
print err
print '!! Please execute from the root directory of pyelftools'