Snap for 4649591 from 24f69aed49bc7615d5949341a39c8cc550c92fb5 to oreo-mr1-cts-release

Change-Id: I0d43108a211b123f76793c42b250dd785ebb8e7a
diff --git a/modules/egl/teglGetFrameTimestampsTests.cpp b/modules/egl/teglGetFrameTimestampsTests.cpp
index 09deb06..642262d 100644
--- a/modules/egl/teglGetFrameTimestampsTests.cpp
+++ b/modules/egl/teglGetFrameTimestampsTests.cpp
@@ -253,7 +253,7 @@
 		check_lt(result, frameTimes.firstCompositionStart, frameTimes.displayPresent, "Buffer displayed before it was composited.");
 }
 
-void verifyNeighboringFrames (const FrameTimes& frame1, const FrameTimes& frame2, tcu::ResultCollector& result, bool verifyReadsDone)
+void verifyNeighboringFrames (const FrameTimes& frame1, const FrameTimes& frame2, tcu::ResultCollector& result)
 {
 	// CPU timeline.
 	check_lt(result, frame1.swapBufferBeginNs, frame2.swapBufferBeginNs, "Swap begin times not monotonic.");
@@ -270,9 +270,6 @@
 
 	if (timestampValid(frame1.displayPresent) && timestampValid(frame2.displayPresent))
 		check_lt(result, frame1.displayPresent, frame2.displayPresent, "Display present times not monotonic.");
-
-	if (verifyReadsDone && timestampValid(frame1.readsDone) && timestampValid(frame2.readsDone))
-		check_lt(result, frame1.readsDone, frame2.readsDone, "Reads done times not monotonic.");
 }
 
 EGLContext createGLES2Context (const Library& egl, EGLDisplay display, EGLConfig config)
@@ -675,7 +672,7 @@
 				if (i >= frameDelay + 1)
 				{
 					FrameTimes& frame6ago = frameTimes[i-frameDelay-1];
-					verifyNeighboringFrames(frame6ago, frame5ago, m_result, verifyReadsDone);
+					verifyNeighboringFrames(frame6ago, frame5ago, m_result);
 				}
 			}
 		}