diff --git a/examples/04_python_static_analysis/config/config.json b/examples/04_python_static_analysis/config/config.json index 2b21ed4..58668b8 100644 --- a/examples/04_python_static_analysis/config/config.json +++ b/examples/04_python_static_analysis/config/config.json @@ -1,11 +1,4 @@ { - "resource_limits" : { - "RLIMIT_CPU" : 60, - "RLIMIT_NPROC" : 100, - "RLIMIT_AS" : "RLIM_INFINITY", - "RLIMIT_SIGPENDING" : 100 - }, - "testcases" : [ { "title" : "Python - Static Analysis", diff --git a/examples/05_cpp_static_analysis/config/config.json b/examples/05_cpp_static_analysis/config/config.json index ebbf84b..90d4175 100644 --- a/examples/05_cpp_static_analysis/config/config.json +++ b/examples/05_cpp_static_analysis/config/config.json @@ -1,11 +1,4 @@ { - "resource_limits" : { - "RLIMIT_CPU" : 60, - "RLIMIT_NPROC" : 100, - "RLIMIT_AS" : "RLIM_INFINITY", - "RLIMIT_SIGPENDING" : 100 - }, - // Static analysis can also be performed upon C++ code. // Here, no compilation is performed at all; instead, student code is examined to // ensure that it does not use either the "goto" or "auto" keywords. diff --git a/examples/06_loop_types/config/config.json b/examples/06_loop_types/config/config.json index b08fba1..8b3bc69 100644 --- a/examples/06_loop_types/config/config.json +++ b/examples/06_loop_types/config/config.json @@ -1,11 +1,4 @@ { - "resource_limits" : { - "RLIMIT_CPU" : 60, - "RLIMIT_NPROC" : 100, - "RLIMIT_AS" : "RLIM_INFINITY", - "RLIMIT_SIGPENDING" : 100 - }, - "testcases" : [ { "title" : "Python - Distinguish for and while Loops", diff --git a/examples/07_loop_depth/config/config.json b/examples/07_loop_depth/config/config.json index 4ccb2d4..e57ed59 100644 --- a/examples/07_loop_depth/config/config.json +++ b/examples/07_loop_depth/config/config.json @@ -1,11 +1,4 @@ { - "resource_limits" : { - "RLIMIT_CPU" : 60, - "RLIMIT_NPROC" : 100, - "RLIMIT_AS" : "RLIM_INFINITY", - "RLIMIT_SIGPENDING" : 100 - }, - "testcases" : [ { "title" : "Python - Determine Loop Depth",