[KERNEL][TEST] Remove unused test and change author string

git-svn-id: svn://kolibrios.org@9320 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Magomed Kostoev (mkostoevr) 2021-11-26 15:45:54 +00:00
parent 18562cd78f
commit 00df866213
2 changed files with 1 additions and 20 deletions

View File

@ -1,5 +1,4 @@
# Copyright 2021 KolibriOS Team
# Copyright 2021 Nekos Team
# Copyright 2021 Magomed Kostoev
# Published under MIT License
import io

View File

@ -1,18 +0,0 @@
#!/usr/bin/python3
import sys
sys.path.append('../')
import common
def run():
# Just an example test, disabled cause it's 3+ seconds long
return
test = common.run()
test.wait(3)
test.take_screenshot("before.ppm")
test.send_keys("ctrl-alt-delete")
test.wait(0.25)
test.take_screenshot("after.ppm")
test.images_diff("before.ppm", "after.ppm", expect = True)
test.kill()