mirror baseline for shared lib components and a sample fuzz test case
for libm of bionic
Change-Id: Ic53184370bb36ef832acc65ab2b09afa538351a3
diff --git a/utils/python/controllers/android_device.py b/utils/python/controllers/android_device.py
index b81e798..f8e41c5 100644
--- a/utils/python/controllers/android_device.py
+++ b/utils/python/controllers/android_device.py
@@ -34,6 +34,7 @@
from vts.runners.host.tcp_client import vts_tcp_client
from vts.utils.python.mirror import hal_mirror
from vts.utils.python.mirror import shell_mirror
+from vts.utils.python.mirror import lib_mirror
from vts.runners.host import errors
import subprocess
@@ -320,6 +321,7 @@
self.host_callback_port)
self.hal = hal_mirror.HalMirror(self.host_command_port,
self.host_callback_port)
+ self.lib = lib_mirror.LibMirror(self.host_command_port)
self.shell = shell_mirror.ShellMirror(self.host_command_port)
def __del__(self):