mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-09-13 05:57:55 -04:00
12 lines
211 B
Python
12 lines
211 B
Python
#!/usr/bin/python3
|
|
import sys
|
|
|
|
sys.path.append('../')
|
|
import common
|
|
|
|
def run(root_dir, test_dir):
|
|
os = common.run(root_dir, test_dir)
|
|
os.wait_for_debug_log("K : kernel SVN", timeout = 10)
|
|
os.kill()
|
|
|