This commit is contained in:
Hannes Verschore 2014-01-20 04:49:36 -08:00
Родитель dac22a71e8
Коммит f15f936257
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -10,6 +10,7 @@ import sys
import signal
import resource
import utils
import time
from optparse import OptionParser
from benchmark import Benchmarks
from collections import namedtuple
@ -58,7 +59,7 @@ submit = submitter.Submitter()
# No updates. Report to server and wait 60 seconds, before moving on
if NumUpdated == 0 and not options.force:
submit.Awake();
sleep(60)
time.sleep(60)
sys.exit(0)
# The native compiler is a special thing, for now.