summaryrefslogtreecommitdiff
path: root/yaksh/compare_stdio.py
diff options
context:
space:
mode:
Diffstat (limited to 'yaksh/compare_stdio.py')
-rw-r--r--yaksh/compare_stdio.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/yaksh/compare_stdio.py b/yaksh/compare_stdio.py
index c4076de..9c13a98 100644
--- a/yaksh/compare_stdio.py
+++ b/yaksh/compare_stdio.py
@@ -18,7 +18,8 @@ def compare_outputs(expected_output, user_output, given_input=None):
exp_lines = expected_output.splitlines()
msg = {"given_input":given_input,
"expected_output": exp_lines,
- "user_output":given_lines
+ "user_output":given_lines,
+ "type": "stdio"
}
ng = len(given_lines)
ne = len(exp_lines)