我正在编写一个python脚本来执行程序(C,C ++,Python,Java,C#,...)。
我想确保在固定的时间限制内执行并使用有限的内存。
如何在Python或bash中执行此操作?
目前我正在使用的Python是:
os.system("time ./"+filename+"< input.txt >out.txt")
答案 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