Bypass gstreamer check for test-wpt-android

This commit is contained in:
Manish Goregaokar 2018-09-11 21:26:58 +05:30
parent 0e252a179f
commit 5d6701179c
2 changed files with 5 additions and 5 deletions

View file

@ -503,10 +503,10 @@ class CommandBase(object):
install them, let us know by filing a bug!")
return False
def set_run_env(self):
def set_run_env(self, android=False):
"""Some commands, like test-wpt, don't use a full build env,
but may still need dynamic search paths. This command sets that up"""
if self.needs_gstreamer_env(None):
if not android and self.needs_gstreamer_env(None):
gstpath = self.get_gstreamer_path()
os.environ["LD_LIBRARY_PATH"] = path.join(gstpath, "lib", "x86_64-linux-gnu")