Mark a gtest test as broken on android-16.

Test: ./run_tests.py
Bug: https://github.com/android-ndk/ndk/issues/771
Change-Id: I6289a06f508c5eb64b70d150d90a35ce75360887
diff --git a/tests/device/gtest/test_config.py b/tests/device/gtest/test_config.py
new file mode 100644
index 0000000..6e0e2dd
--- /dev/null
+++ b/tests/device/gtest/test_config.py
@@ -0,0 +1,5 @@
+def run_broken(_abi, device_api, name):
+    if name == 'gtest-printers_test' and device_api <= 16:
+        return ('android-{}'.format(device_api),
+                'https://github.com/android-ndk/ndk/issues/771')
+    return None, None