Merge "ignore orientation change which can happen due to replica island" into jb-mr2-dev
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>