Mercurial > lcfOS
view python/grind.py @ 263:c352dec19299
Added gcc arm runner
author | Windel Bouwman |
---|---|
date | Fri, 09 Aug 2013 16:28:50 +0200 |
parents | 444b9df2ed99 |
children |
line wrap: on
line source
import cProfile import unittest import pstats if __name__ == '__main__': suite = unittest.TestLoader().discover('.') def runtests(): unittest.TextTestRunner().run(suite) #s = cProfile.run('runtests()',sort='cumtime') s = cProfile.run('runtests()',sort='tottime')