test-user-mode-in-tree 541 B

12345678910111213141516171819202122
  1. #!/usr/bin/env python3
  2. import lkmc.import_path
  3. test_user_mode = lkmc.import_path.import_path_relative_root('test-user-mode')
  4. class Main(test_user_mode.Main):
  5. def __init__(self):
  6. super().__init__(
  7. description='''\
  8. https://github.com/cirosantilli/linux-kernel-module-cheat#userland-setup-getting-started-natively
  9. ''',
  10. defaults={
  11. 'emulators': ['native'],
  12. 'in_tree': True,
  13. 'tests': ['.'],
  14. }
  15. )
  16. if __name__ == '__main__':
  17. Main().cli()