mirror of
https://github.com/RRZE-HPC/OSACA.git
synced 2025-12-16 09:00:05 +01:00
23 lines
515 B
Python
Executable File
23 lines
515 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
import unittest
|
|
|
|
sys.path[0:0] = [".", ".."]
|
|
suite = unittest.TestLoader().loadTestsFromNames(
|
|
[
|
|
"test_base_parser",
|
|
"test_parser_x86att",
|
|
"test_parser_AArch64",
|
|
"test_marker_utils",
|
|
"test_semantics",
|
|
"test_frontend",
|
|
"test_db_interface",
|
|
"test_kerncraftAPI",
|
|
"test_cli",
|
|
]
|
|
)
|
|
|
|
testresult = unittest.TextTestRunner(verbosity=2, buffer=True).run(suite)
|
|
sys.exit(0 if testresult.wasSuccessful() else 1)
|