Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. #!/usr/bin/python3
  2. import sys
  3.  
  4. sys.path.append('../')
  5. import common
  6.  
  7. def run():
  8.     os = common.run()
  9.     os.wait_for_debug_log("K : kernel SVN", timeout = 10)
  10.     os.kill()
  11.  
  12.