diff options
Diffstat (limited to 'testapp/exam/evaluate_cpp.py')
-rw-r--r-- | testapp/exam/evaluate_cpp.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/testapp/exam/evaluate_cpp.py b/testapp/exam/evaluate_cpp.py index 1723d3b..87bd7a3 100644 --- a/testapp/exam/evaluate_cpp.py +++ b/testapp/exam/evaluate_cpp.py @@ -9,6 +9,8 @@ import importlib # local imports from evaluate_c import EvaluateC from code_server import TestCode +from registry import registry + class EvaluateCpp(EvaluateC, TestCode): @@ -41,3 +43,5 @@ class EvaluateCpp(EvaluateC, TestCode): os.remove(submit_path) return success, err + +registry.register('cpp', evaluate_cpp, EvaluateCpp)
\ No newline at end of file |