如何在执行程序时限制执行时间和内存限制

时间:2015-02-15 18:55:39

标签: python bash

我正在编写一个python脚本来执行程序(C,C ++,Python,Java,C#,...)。

我想确保在固定的时间限制内执行并使用有限的内存。

如何在Python或bash中执行此操作?

目前我正在使用的Python是:

os.system("time ./"+filename+"< input.txt >out.txt")

1 个答案:

答案 0 :(得分:0)

好的,我确定了如何做到这一点,在python中运行以下命令,你会看到它的工作原理,第二个命令的malloc应该会失败:

import os
commandStr = 'timeout 4 bash -c "ulimit -v 100000000000; python -c \"[5]*10000\""'
print 'Running command with large ulimit'
os.system(commandStr)
commandStr = 'timeout 4 bash -c "ulimit -v 10; python -c \"[5]*10000\""'
print 'Running command with low ulimit'
os.system(commandStr)

传递给ulimit的参数以kB

表示