We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ccacd3c commit 2e70b10Copy full SHA for 2e70b10
tests/test_cms.py
@@ -184,5 +184,19 @@ def modification_fn(raw_config):
184
modify_config(self.task_dir, modification_fn)
185
186
187
+class TestRustJudge(TestSumCMS):
188
+ """Output without newline at the end with out_format=binary."""
189
+
190
+ def expecting_success(self) -> bool:
191
+ return True
192
193
+ def modify_task(self) -> None:
194
+ def modification_fn(raw_config):
195
+ raw_config["tests"]["out_judge"] = "judge_rust"
196
+ raw_config["tests"]["judge_needs_out"] = "no"
197
198
+ modify_config(self.task_dir, modification_fn)
199
200
201
if __name__ == "__main__":
202
unittest.main(verbosity=2)
0 commit comments