ignore orientation change which can happen due to replica island
bug: 9054685
Change-Id: I9dcd2d1dc7310d527210ddbff9a318bb11f3cb0f
diff --git a/tests/tests/openglperf/AndroidManifest.xml b/tests/tests/openglperf/AndroidManifest.xml
index 84bfea4..1934f35 100644
--- a/tests/tests/openglperf/AndroidManifest.xml
+++ b/tests/tests/openglperf/AndroidManifest.xml
@@ -34,13 +34,15 @@
<application>
<uses-library android:name="android.test.runner" />
- <activity android:name="android.openglperf.cts.GlPlanetsActivity">
+ <activity android:name="android.openglperf.cts.GlPlanetsActivity"
+ android:configChanges="keyboard|keyboardHidden|orientation|screenSize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
- <activity android:name="android.openglperf.cts.TextureTestActivity" />
+ <activity android:name="android.openglperf.cts.TextureTestActivity"
+ android:configChanges="keyboard|keyboardHidden|orientation|screenSize" />
</application>
</manifest>