-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtf_batch.py
executable file
·59 lines (51 loc) · 1.64 KB
/
tf_batch.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/python3
import sys
import subprocess
import argparse
import threading
import os
import shutil
def exe_testflinger(cid, folder, job_template):
job_name = args.job_template.split("/")[-1]
work_dir = folder + '/' + cid
os.makedirs(work_dir, exist_ok = True)
shutil.copy(job_name, work_dir + '/' + cid + '.yaml')
subprocess.run(
"sed -e 's/{0}/{1}/g' {0} > {3}/{1}.yaml".format(
job_name, cid, job_template, work_dir),
shell=True,
check=True,
)
try:
subprocess.run(
"testflinger submit -p {0}/{1} 2>&1 | tee {0}/output_{1}.txt".format(
work_dir, cid),
shell=True,
check=True,
timeout=180,
)
except subprocess.TimeoutExpired:
print("%s testflinger job expired" % cid)
if __name__ == "__main__":
# Parsing arguments
parser = argparse.ArgumentParser()
parser.add_argument("cid_list", help="text file containing cid list")
parser.add_argument("job_template", help="job template yaml file")
parser.add_argument(
"target_folder",
help="where to save the yaml files and testflinger output files",
)
args = parser.parse_args()
threads = []
with open(args.cid_list, "r") as f:
cids = f.readlines()
length = len(cids)
for line in cids:
cid = line.rstrip()
thread = threading.Thread(
target=exe_testflinger,
args=(cid, args.target_folder, args.job_template))
threads.append(thread)
thread.start()
for thread in threads:
thread.join()