mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 08:30:42 -05:00
12 lines
221 B
Python
12 lines
221 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
import sys
|
||
|
|
||
|
sys.path.insert(1, '@tests_datadir@')
|
||
|
|
||
|
from mutter_dbusrunner import MutterDBusRunner, meta_run
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
result = meta_run(MutterDBusRunner)
|
||
|
sys.exit(result)
|