Skip to content

Commit 0fbe9cf

Browse files
authored
[Bugfix] related to test case isolation (#18)
* fix example 10 * small edits
1 parent 53742be commit 0fbe9cf

File tree

4 files changed

+14
-2
lines changed

4 files changed

+14
-2
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# This file contains a math mistake, and will therefore be graded correct.
2+
3+
print(64 * 9. / (5 + 32) )
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#include <iostream>
2+
3+
int main()
4+
{
5+
int i;
6+
std::cout << "Hello, world!" << std::endl;
7+
}

examples/10_java_coverage/config/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"autograding" : {
3-
"work_to_details": [ "*.csv" ]
3+
"work_to_details": [ "**/*.csv" ]
44
},
55
"resource_limits" : {
66
"RLIMIT_CPU" : 60,

examples/11_resources/config/config.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{
22
"resource_limits" : {
3-
// Allow the submission to run for 100 seconds.
3+
// Allow the submission to run for 30 seconds.
4+
// NOTE: there is an additional system buffer of 10
5+
// seconds before the job is actually terminated.
46
"RLIMIT_CPU" : 30
57
},
68

0 commit comments

Comments
 (0)