mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-25 11:11:35 +01:00
Please python stop torturing me with refactors. Make ./run -u blow up if executable not found, otherwise I go crazy. Get ./test-gdb back to life after the ./run relative path refactor, forgot to test this.
22 lines
521 B
Python
Executable File
22 lines
521 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import common
|
|
|
|
test_user_mode = common.import_path_relative_root('test-user-mode')
|
|
|
|
class Main(test_user_mode.Main):
|
|
def __init__(self):
|
|
super().__init__(
|
|
description='''\
|
|
https://github.com/cirosantilli/linux-kernel-module-cheat#userland-setup-getting-started-natively
|
|
''',
|
|
defaults={
|
|
'emulators': ['native'],
|
|
'in_tree': True,
|
|
'tests': ['.'],
|
|
}
|
|
)
|
|
|
|
if __name__ == '__main__':
|
|
Main().cli()
|