git-svn-id: svn://kolibrios.org@9249 a494cfbc-eb01-0410-851d-a64ba20cac60
12 lines
175 B
Python
12 lines
175 B
Python
#!/usr/bin/python3
|
|
import sys
|
|
|
|
sys.path.append('../')
|
|
import common
|
|
|
|
def run():
|
|
os = common.run()
|
|
os.wait_for_debug_log("K : kernel SVN", timeout = 10)
|
|
os.kill()
|
|
|