Increase the timeout on Timer queries tests.

On Mac, the timer queries tests have flakiness as the tests may timeout
before the query result is available. The time to wait before throwing a
timeout error in the tests was therefore increased by a factor of 20.

BUG=585498

Change-Id: I55047ee7759e6d2dde69294df451202dfb498034
Reviewed-on: https://chromium-review.googlesource.com/327031
Commit-Queue: Ian Ewell <ewell@google.com>
Reviewed-by: Ian Ewell <ewell@google.com>
diff --git a/src/tests/gl_tests/TimerQueriesTest.cpp b/src/tests/gl_tests/TimerQueriesTest.cpp
index e2ecd82..70d9cfd 100644
--- a/src/tests/gl_tests/TimerQueriesTest.cpp
+++ b/src/tests/gl_tests/TimerQueriesTest.cpp
@@ -126,7 +126,7 @@
 
     swapBuffers();
 
-    int timeout  = 10000;
+    int timeout  = 200000;
     GLuint ready = GL_FALSE;
     while (ready == GL_FALSE && timeout > 0)
     {
@@ -498,7 +498,7 @@
 
     swapBuffers();
 
-    int timeout  = 10000;
+    int timeout  = 200000;
     GLuint ready = GL_FALSE;
     while (ready == GL_FALSE && timeout > 0)
     {