forked from talent-plan/tinysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
judge.sh
executable file
·58 lines (47 loc) · 915 Bytes
/
judge.sh
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/bin/sh
if make test-proj1 > /dev/null 2>&1; then
echo "proj-1 passed"
else
echo "proj-1 failed"
fi
if make test-proj2 > /dev/null 2>&1; then
echo "proj-2 passed"
else
echo "proj-2 failed"
fi
if make test-proj3 > /dev/null 2>&1; then
echo "proj-3 passed"
else
echo "proj-3 failed"
fi
if make test-proj4-1 > /dev/null 2>&1; then
echo "proj-4-1 passed"
else
echo "proj-4-1 failed"
fi
if make test-proj4-2 > /dev/null 2>&1; then
echo "proj-4-2 passed"
else
echo "proj-4-2 failed"
fi
if make test-proj5-1 > /dev/null 2>&1; then
echo "proj-5-1 passed"
else
echo "proj-5-1 failed"
fi
if make test-proj5-2 > /dev/null 2>&1; then
echo "proj-5-2 passed"
else
echo "proj-5-2 failed"
fi
if make test-proj5-3 > /dev/null 2>&1; then
echo "proj-5-3 passed"
else
echo "proj-5-3 failed"
fi
if make proj6 > /dev/null 2>&1; then
echo "proj-6 passed"
else
echo "proj-6 failed"
fi
make failpoint-disable