blob: 0fb2fcbf6f8959b1cc8255872897d2dc56a8bc45 [file] [log] [blame]
Pingping Lind28ab982016-08-29 18:42:52 +00001#!/usr/bin/env python
2
3# This imports and runs ../../xos-observer.py
4# Runs the standard XOS observer
5
6import importlib
7import os
8import sys
9observer_path = os.path.join(os.path.dirname(
Yunpeng Zhangd01f3ce2017-07-06 20:06:35 -040010 os.path.realpath(__file__)), "../../synchronizers/new_base")
Pingping Lind28ab982016-08-29 18:42:52 +000011sys.path.append(observer_path)
12mod = importlib.import_module("xos-synchronizer")
13mod.main()