Pingping Lin | d28ab98 | 2016-08-29 18:42:52 +0000 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | |
| 3 | # This imports and runs ../../xos-observer.py |
| 4 | # Runs the standard XOS observer |
| 5 | |
| 6 | import importlib |
| 7 | import os |
| 8 | import sys |
| 9 | observer_path = os.path.join(os.path.dirname( |
Yunpeng Zhang | d01f3ce | 2017-07-06 20:06:35 -0400 | [diff] [blame] | 10 | os.path.realpath(__file__)), "../../synchronizers/new_base") |
Pingping Lin | d28ab98 | 2016-08-29 18:42:52 +0000 | [diff] [blame] | 11 | sys.path.append(observer_path) |
| 12 | mod = importlib.import_module("xos-synchronizer") |
| 13 | mod.main() |