Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions contest/hw/hwksft.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,7 @@ def test(binfo, rinfo, cbarg): # pylint: disable=unused-argument
except Exception as e:
print(f"Warning: failed to close reservation {reservation_id}: {e}")

os.mknod(os.path.join(results_path, ".tester_done"))
print("Done at", datetime.datetime.now())
if cases is None:
cases = [{
Expand Down
3 changes: 3 additions & 0 deletions contest/remote/exec.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ def test(binfo, rinfo, config):
config.get('local', 'results_path') + '/' + \
rinfo['run-cookie']

os.mknod(os.path.join(results_path, ".tester_done"))
print("Done at", datetime.datetime.now())

return [{'test': config.get('executor', 'test'),
'group': config.get('executor', 'group'),
'result': res, 'link': link}]
Expand Down
3 changes: 3 additions & 0 deletions contest/remote/gh.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,9 @@ def test(binfo, rinfo, cbarg):
one['retry'] = one2['result']
break

os.mknod(os.path.join(results_path, ".tester_done"))
print("Done at", datetime.datetime.now())

return res


Expand Down
1 change: 1 addition & 0 deletions contest/remote/kunit.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ def test(binfo, rinfo, config):
'group': config.get('executor', 'group'),
'result': 'fail', 'link': link}]

os.mknod(os.path.join(results_path, ".tester_done"))
print("Done at", datetime.datetime.now())

return cases
Expand Down
1 change: 1 addition & 0 deletions contest/remote/vmksft-p.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,7 @@ def test(binfo, rinfo, cbarg):
if not in_queue.empty():
print("ERROR: in queue is not empty")

os.mknod(os.path.join(results_path, ".tester_done"))
print("Done at", datetime.datetime.now())

return cases
Expand Down
1 change: 1 addition & 0 deletions contest/remote/vmksft.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,7 @@ def test(binfo, rinfo, cbarg):
vm.stop()
vm.dump_log(results_path + '/vm-stop')

os.mknod(os.path.join(results_path, ".tester_done"))
print("Done at", datetime.datetime.now())

return cases
Expand Down
1 change: 1 addition & 0 deletions contest/remote/vmtest.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ def test(binfo, rinfo, cbarg):
vm.stop()
vm.dump_log(results_path + '/vm-stop-' + str(vm_id))

os.mknod(os.path.join(results_path, ".tester_done"))
print("Done at", datetime.datetime.now())

return cases
Expand Down
Loading