mirror of
https://github.com/QingdaoU/Judger.git
synced 2024-12-29 16:31:42 +00:00
11 lines
333 B
Python
11 lines
333 B
Python
# coding=utf-8
|
|
import _judger
|
|
from unittest import TestCase, main
|
|
|
|
from testcase.integration.test import IntegrationTest
|
|
from testcase.c_cpp.test import C_CPPJudgeTestCase
|
|
from testcase.seccomp.test import SeccompTest
|
|
|
|
ver = _judger.VERSION
|
|
print "Judger version %d.%d.%d" % ((ver >> 16) & 0xff, (ver >> 8) & 0xff, ver & 0xff)
|
|
main() |