Releases: RyotaBannai/competitive-programming-grader
Releases · RyotaBannai/competitive-programming-grader
Ignore test case feature
Added the ignoring test case feature, which is supposed to be used when you added couples of test cases.
Imagine your code passed first test case, but didn't the second one. For the debugging sake, you'd like to ignore the first test case when running run sub command, so you can keep your standard output as clean as possible.
Add @cpg_test_ignored
annotation in the beginning of a test case's input file, which you'd like to ignore when running run
sub command.
Below formats are allowed:
(These annotations must be put in input file, not output file)
// @cpg_test_ignored
/** @cpg_test_ignored */
/* @cpg_test_ignored */
/** @cpg_test_ignored
*/
/*
@cpg_test_ignored
*/
/* Input File Title
@cpg_test_ignored
*/
Core features
Added core features
Go pick up either of:
cpg_linux_amd64
for Linux, and
cpg
for MaxOS.
0.0.1-beta
Description
Add minimal features, such as:
create
command to create test cases short-handedlyrun
command to run test cases