You've already forked gnatstudio
mirror of
https://github.com/AdaCore/gnatstudio.git
synced 2026-02-12 12:42:33 -08:00
14 lines
278 B
Python
Executable File
14 lines
278 B
Python
Executable File
#!/usr/bin/env python
|
|
import sys
|
|
import testsuite
|
|
import os
|
|
|
|
|
|
if __name__ == "__main__":
|
|
this_dir = os.path.dirname(__file__)
|
|
|
|
suite = testsuite.GSPublicTestsuite(this_dir)
|
|
exit_code = suite.testsuite_main()
|
|
suite.dump_testsuite_result()
|
|
sys.exit(exit_code)
|