mirror of https://github.com/VLSIDA/OpenRAM.git
Add return code for regression test
This commit is contained in:
parent
f34c4eb7dc
commit
077f3f20ec
|
|
@ -27,4 +27,5 @@ modules = map(__import__, moduleNames)
|
|||
suite = unittest.TestSuite()
|
||||
load = unittest.defaultTestLoader.loadTestsFromModule
|
||||
suite.addTests(map(load, modules))
|
||||
unittest.TextTestRunner(verbosity=2).run(suite)
|
||||
ret = unittest.TextTestRunner(verbosity=2).run(suite).wasSuccessful()
|
||||
sys.exit(ret)
|
||||
|
|
|
|||
Loading…
Reference in New Issue