We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d922f23 commit 875726bCopy full SHA for 875726b
1 file changed
contrib/vcloud/benchmarkclient_executor.py
@@ -12,6 +12,7 @@
12
import subprocess
13
import sys
14
from pathlib import Path
15
+import time
16
17
import benchexec.util
18
from benchexec import BenchExecException
@@ -280,6 +281,7 @@ def getBenchmarkDataForCloud(benchmark):
280
281
DEFAULT_CLOUD_TIMELIMIT,
282
)
283
timeLimit = DEFAULT_CLOUD_TIMELIMIT
284
+ time.sleep() # give user a moment to notice the warning
285
memLimit = bytes_to_mb(benchmark.rlimits.memory) or memRequirement
286
coreLimit = benchmark.rlimits.cpu_cores
287
wallTimeLimit = benchmark.rlimits.walltime
0 commit comments