update unittest runner
authorEli Bendersky <eliben@gmail.com>
Sat, 17 Dec 2011 12:36:39 +0000 (14:36 +0200)
committerEli Bendersky <eliben@gmail.com>
Sat, 17 Dec 2011 12:36:39 +0000 (14:36 +0200)
test/run_all_unittests.py

index 555b0d25b3e42d13fdc5315d4225548cacd20c9c..54ad5f0bb2c748a14df043580a8e042c3f08f637 100755 (executable)
@@ -12,9 +12,9 @@ from unittest import TestLoader, TextTestRunner
 
 if __name__ == '__main__':
     try:
-        tests = TestLoader().discover('tests', 'test*.py', 'tests')
+        tests = TestLoader().discover('test', 'test*.py', 'test')
         TextTestRunner().run(tests)
     except ImportError as err:
         print err
-        print '!! Please execute from the root directory of pyelfutils'
+        print '!! Please execute from the root directory of pyelftools'