summaryrefslogtreecommitdiff
path: root/yaksh/cpp_code_evaluator.py
diff options
context:
space:
mode:
authorPrabhu Ramachandran2016-12-23 13:40:44 +0530
committerGitHub2016-12-23 13:40:44 +0530
commit48366e84b98157ac32b22b2aa19b1c1cde68afd4 (patch)
treeadb07f2709621b8906b5047da02010958bebba67 /yaksh/cpp_code_evaluator.py
parent77e8a6c1cde9190daf9075d71caf6017dc1380e7 (diff)
parent0e56fc6a77ec21db05c9bafb42b1acc652354a32 (diff)
downloadonline_test-48366e84b98157ac32b22b2aa19b1c1cde68afd4.tar.gz
online_test-48366e84b98157ac32b22b2aa19b1c1cde68afd4.tar.bz2
online_test-48366e84b98157ac32b22b2aa19b1c1cde68afd4.zip
Merge pull request #166 from ankitjavalkar/error-refactor-for-mod
Prettify Error rendering during code questions and grading page
Diffstat (limited to 'yaksh/cpp_code_evaluator.py')
-rw-r--r--yaksh/cpp_code_evaluator.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/yaksh/cpp_code_evaluator.py b/yaksh/cpp_code_evaluator.py
index f0c2029..91ba703 100644
--- a/yaksh/cpp_code_evaluator.py
+++ b/yaksh/cpp_code_evaluator.py
@@ -15,7 +15,7 @@ class CppCodeEvaluator(BaseEvaluator):
"""Tests the C code obtained from Code Server"""
def __init__(self, metadata, test_case_data):
self.files = []
- self.submit_code_path = self.create_submit_code_file('submit.c')
+ self.submit_code_path = ''
self.compiled_user_answer = None
self.compiled_test_code = None
self.user_output_path = ""
@@ -62,6 +62,7 @@ class CppCodeEvaluator(BaseEvaluator):
ref_code_path = self.test_case
clean_ref_code_path, clean_test_case_path = \
self._set_test_code_file_path(ref_code_path)
+ self.submit_code_path = self.create_submit_code_file('submit.c')
if self.file_paths:
self.files = copy_files(self.file_paths)
if not isfile(clean_ref_code_path):
@@ -133,7 +134,7 @@ class CppCodeEvaluator(BaseEvaluator):
)
proc, stdout, stderr = ret
if proc.returncode == 0:
- success, err = True, "Correct answer"
+ success, err = True, None
mark_fraction = float(self.weight) if self.partial_grading else 0.0
else:
err = "{0} \n {1}".format(stdout, stderr)