summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYing Chen <chying@google.com>2016-01-20 18:19:02 -0800
committerYing Chen <chying@google.com>2016-01-20 18:19:02 -0800
commitfc621a3c898c7cffc00190909d6825c2d4968d2a (patch)
tree05091e6b01df2d67bd999cd00b41907fb72a05f4
parent27024478eb2fe2f3d74f23aa76ab96fbfb28a2fa (diff)
downloadadt-infra-fc621a3c898c7cffc00190909d6825c2d4968d2a.tar.gz
Enable -gpu mesa on Windows, fixed by https://android-review.googlesource.com/#/c/197384/
Change-Id: Iece9b3f91911e51f0109f6701c7735f67e5e9b30
-rw-r--r--emu_test/utils/emu_testcase.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/emu_test/utils/emu_testcase.py b/emu_test/utils/emu_testcase.py
index 653a5e0b..f38a96e1 100644
--- a/emu_test/utils/emu_testcase.py
+++ b/emu_test/utils/emu_testcase.py
@@ -383,7 +383,7 @@ def create_test_case_from_file(desc, testcase_class, test_func):
qemu_str = "_qemu2"
setattr(testcase_class, "test_%s_%s%s" % (desc, str(avd_config), qemu_str), func)
- if platform.system() in ["Linux"] and avd_config.api > "15" and avd_config.gpu == "yes":
+ if platform.system() in ["Linux", "Windows"] and avd_config.api > "15" and avd_config.gpu == "yes":
avd_config_mesa = avd_config._replace(gpu = "mesa")
create_test_case(avd_config_mesa, op)