2019-02-18 23:53:48 +08:00
|
|
|
import json
|
|
|
|
import sys
|
2019-02-19 00:50:05 +08:00
|
|
|
import time
|
2019-02-19 00:24:08 +08:00
|
|
|
import subprocess
|
2019-02-19 00:50:05 +08:00
|
|
|
import os
|
|
|
|
|
|
|
|
import artiq
|
|
|
|
|
2019-02-17 20:26:46 +08:00
|
|
|
|
2019-02-19 00:24:08 +08:00
|
|
|
with open(sys.argv[1], "r") as hydra_json_file:
|
|
|
|
hydra_json = json.load(hydra_json_file)
|
2019-02-18 23:53:48 +08:00
|
|
|
|
|
|
|
drv = hydra_json["drvPath"]
|
|
|
|
assert drv.startswith("/nix/store/")
|
|
|
|
drv = drv[len("/nix/store/"):]
|
2019-02-19 00:24:08 +08:00
|
|
|
hydra_log = "/var/lib/hydra/build-logs/" + drv[:2] + "/" + drv[2:]
|
2019-02-18 23:53:48 +08:00
|
|
|
|
2019-02-19 00:24:08 +08:00
|
|
|
with open(hydra_log, "w") as log:
|
2019-02-19 00:50:05 +08:00
|
|
|
def run(*args, **kwargs):
|
|
|
|
subprocess.run(args, stdout=log, stderr=log, **kwargs).check_returncode()
|
|
|
|
|
2019-02-19 00:24:08 +08:00
|
|
|
run("artiq_flash", "-t", "kc705", "-V", "nist_clock")
|
2019-02-19 00:50:05 +08:00
|
|
|
|
2019-02-19 00:53:14 +08:00
|
|
|
time.sleep(15)
|
2019-02-19 00:50:05 +08:00
|
|
|
|
2019-02-19 00:53:14 +08:00
|
|
|
#run("ping", "kc705-1", "-c10", "-w30")
|
2019-02-19 00:50:05 +08:00
|
|
|
|
|
|
|
env = {
|
|
|
|
"ARTIQ_ROOT": artiq.__path__ + "/examples/kc705_nist_clock",
|
|
|
|
"ARTIQ_LOW_LATENCY": "1"
|
|
|
|
}
|
|
|
|
env.update(os.environ)
|
|
|
|
run("python", "-m", "unittest", "-v", "artiq.test.coredevice", env=env)
|