artiq_run: fix ELF running

This commit is contained in:
Sebastien Bourdeauducq 2015-07-25 15:52:38 +08:00
parent 3c6a4b81a3
commit d14a31f443
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ class ELFRunner(EnvExperiment):
def run(self): def run(self):
with open(self.file, "rb") as f: with open(self.file, "rb") as f:
self.core.comm.load(f.read()) self.core.comm.load(f.read())
self.core.comm.run("run", False) self.core.comm.run("run")
self.core.comm.serve(dict(), dict()) self.core.comm.serve(dict(), dict())