summaryrefslogtreecommitdiffstats
path: root/utils/bs-tester.sh
blob: 1c218419f0ed52d81819be1b3a25c23477054e17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/sh
#
#   tester.sh - tests whether or not the judge is working properly without web
#   Copyright (C) 2012  Hamed Saleh and Mahrud Sayrafi

#   This program is free software: you can redistribute it and/or modify
#   it under the terms of the GNU General Public License as published by
#   the Free Software Foundation, either version 3 of the License, or
#   (at your option) any later version.

#   This program is distributed in the hope that it will be useful,
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#   GNU General Public License for more details.

#   You should have received a copy of the GNU General Public License
#   along with this program.  If not, see <http://www.gnu.org/licenses/>.

echo -1 \
	admin \
	bs \
	cpp \
	$JUDGE_PREFIX/problems/bs/bs.cpp \
	0 | #FIXME: what was this?! guess smt like whether or not break on wrong
	nc -vv 127.0.0.1 31415

sleep 2 # Ladies and gentlemen, please wait for the jury to make its decision!

tail -n3 $JUDGE_PREFIX/log/error.log # in case there are some errors, they are here!
tail -n1 $JUDGE_PREFIX/log/grading.log # and there you go! the final decision!