From 3a5f406ff59a05c0eddda191127d58b39cb8049b Mon Sep 17 00:00:00 2001 From: cassiopc Date: Wed, 24 Oct 2012 09:56:07 +0200 Subject: open dir for 1.5.2. I still must split devel and master in different branches to properly use git... --- boca-1.5.2/doc/problemexamples/bits/tests/c | 36 +++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100755 boca-1.5.2/doc/problemexamples/bits/tests/c (limited to 'boca-1.5.2/doc/problemexamples/bits/tests/c') diff --git a/boca-1.5.2/doc/problemexamples/bits/tests/c b/boca-1.5.2/doc/problemexamples/bits/tests/c new file mode 100755 index 0000000..de0a9c5 --- /dev/null +++ b/boca-1.5.2/doc/problemexamples/bits/tests/c @@ -0,0 +1,36 @@ +#!/bin/bash +# +# This file performs a test of the autojudge system. It can run whatever you feel important to test the autojudge +# and the script files that are included in the problem package + +cat > test.c < +int main() { + char s[100]; + scanf("%s", s); + printf("%s\n",s); + return 0; +} +EOF +cat > test.in <