am b55ee96b: am f9a6b37b: am cf05e0c2: am 0969f15c: am ac08bc8a: Merge "Update Android CTS bandaid urls that use test_key1 to a new key" into jb-dev

* commit 'b55ee96b0345250e56090b0b566f9eead69c1bbd':
  Update Android CTS bandaid urls that use test_key1 to a new key
diff --git a/CtsTestCaseList.mk b/CtsTestCaseList.mk
index 2b61134..1065a34 100644
--- a/CtsTestCaseList.mk
+++ b/CtsTestCaseList.mk
@@ -32,6 +32,7 @@
 	CtsAccelerationTestStubs \
 	CtsDelegatingAccessibilityService \
 	CtsDeviceAdmin \
+	CtsThemeDeviceApp \
 	CtsMonkeyApp \
 	CtsMonkeyApp2 \
 	CtsSomeAccessibilityServices \
@@ -72,7 +73,6 @@
 	CtsGraphicsTestCases \
 	CtsGraphics2TestCases \
 	CtsHardwareTestCases \
-	CtsHoloTestCases \
 	CtsJniTestCases \
 	CtsLocationTestCases \
 	CtsMediaStressTestCases \
@@ -109,6 +109,7 @@
 # Host side only tests
 cts_host_libraries := \
 	CtsAppSecurityTests \
+	CtsThemeHostTestCases \
 	CtsMonkeyTestCases
 
 # Native test executables that need to have associated test XMLs.
diff --git a/apps/CtsVerifier/AndroidManifest.xml b/apps/CtsVerifier/AndroidManifest.xml
index 83e23b6..219116f 100644
--- a/apps/CtsVerifier/AndroidManifest.xml
+++ b/apps/CtsVerifier/AndroidManifest.xml
@@ -18,10 +18,10 @@
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
       package="com.android.cts.verifier"
       android:versionCode="1"
-      android:versionName="4.2_r4">
+      android:versionName="4.2_r6">
 
-    <!-- Using 10 for more complete NFC support... -->
-    <uses-sdk android:minSdkVersion="10"></uses-sdk>
+    <!-- Using 10+ for more complete NFC support... -->
+    <uses-sdk android:minSdkVersion="12"></uses-sdk>
 
     <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
     <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
@@ -52,7 +52,6 @@
             android:debuggable="true"
             android:largeHeap="true">
 
-        <uses-library android:name="com.android.future.usb.accessory" />
         <meta-data android:name="com.google.android.backup.api_key"
                 android:value="AEdPqrEAAAAIbK6ldcOzoeRtQ1u1dFVJ1A7KetRhit-a1Xa82Q" />
 
@@ -364,7 +363,7 @@
             </intent-filter>
             <meta-data android:name="test_category" android:value="@string/test_category_camera" />
             <meta-data android:name="test_required_features" android:value="android.hardware.sensor.gyroscope" />
-            <meta-data android:name="test_required_features" android:value="android.hardware.camera.any"/>
+            <meta-data android:name="test_required_features" android:value="android.hardware.camera"/>
         </activity>
         <activity
             android:name=".camera.fov.DetermineFovActivity"
diff --git a/apps/CtsVerifier/src/com/android/cts/verifier/features/FeatureSummaryActivity.java b/apps/CtsVerifier/src/com/android/cts/verifier/features/FeatureSummaryActivity.java
index ca3c2a9..84d64cf 100644
--- a/apps/CtsVerifier/src/com/android/cts/verifier/features/FeatureSummaryActivity.java
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/features/FeatureSummaryActivity.java
@@ -154,7 +154,7 @@
 
     public static final Feature[] ALL_HONEYCOMB_MR1_FEATURES = {
             new Feature("android.hardware.usb.host", false),
-            new Feature("android.hardware.usb.accessory", true),
+            new Feature("android.hardware.usb.accessory", false),
     };
 
     public static final Feature[] ALL_HONEYCOMB_MR2_FEATURES = {
diff --git a/hostsidetests/monkey/src/com/android/cts/monkey/AbstractMonkeyTest.java b/hostsidetests/monkey/src/com/android/cts/monkey/AbstractMonkeyTest.java
index 3930ea4..8580a9d 100644
--- a/hostsidetests/monkey/src/com/android/cts/monkey/AbstractMonkeyTest.java
+++ b/hostsidetests/monkey/src/com/android/cts/monkey/AbstractMonkeyTest.java
@@ -17,7 +17,7 @@
     /** 
      * Base monkey command with flags to avoid side effects like airplane mode.
      */
-    static final String MONKEY_CMD = "monkey --pct-majornav 0 --pct-syskeys 0 --pct-anyevent 0";
+    static final String MONKEY_CMD = "monkey --pct-touch 0 --pct-motion 0 --pct-majornav 0 --pct-syskeys 0 --pct-anyevent 0";
 
     CtsBuildHelper mBuild;
     ITestDevice mDevice;
diff --git a/hostsidetests/monkey/test-apps/CtsMonkeyApp/AndroidManifest.xml b/hostsidetests/monkey/test-apps/CtsMonkeyApp/AndroidManifest.xml
index a3dfc83..849d6a4 100644
--- a/hostsidetests/monkey/test-apps/CtsMonkeyApp/AndroidManifest.xml
+++ b/hostsidetests/monkey/test-apps/CtsMonkeyApp/AndroidManifest.xml
@@ -18,14 +18,14 @@
 
     <application android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
 
-        <activity android:name=".MonkeyActivity">
+        <activity android:name=".MonkeyActivity" android:screenOrientation="portrait">
             <intent-filter>
                 <action android:name="android.intent.action.MAIN" />
                 <category android:name="android.intent.category.LAUNCHER" />
             </intent-filter>
         </activity>
         
-        <activity android:name=".BaboonActivity">
+        <activity android:name=".BaboonActivity" android:screenOrientation="portrait">
             <intent-filter>
                 <action android:name="android.intent.action.MAIN" />
                 <category android:name="android.intent.category.MONKEY" />
diff --git a/hostsidetests/theme/Android.mk b/hostsidetests/theme/Android.mk
new file mode 100644
index 0000000..75ee891
--- /dev/null
+++ b/hostsidetests/theme/Android.mk
@@ -0,0 +1,35 @@
+# Copyright (C) 2014 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+LOCAL_PATH := $(call my-dir)
+
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES := $(call all-java-files-under, src) \
+                   ../../libs/util/src/android/cts/util/TimeoutReq.java
+
+LOCAL_JAVA_RESOURCE_DIRS := assets/$(PLATFORM_SDK_VERSION)/
+
+LOCAL_MODULE_TAGS := optional
+
+# Must match the package name in CtsTestCaseList.mk
+LOCAL_MODULE := CtsThemeHostTestCases
+
+LOCAL_JAVA_LIBRARIES := cts-tradefed ddmlib-prebuilt tradefed-prebuilt
+
+LOCAL_CTS_TEST_PACKAGE := android.host.theme
+
+include $(BUILD_CTS_HOST_JAVA_LIBRARY)
+
+include $(call all-makefiles-under,$(LOCAL_PATH))
diff --git a/hostsidetests/theme/app/Android.mk b/hostsidetests/theme/app/Android.mk
new file mode 100644
index 0000000..a8d331d
--- /dev/null
+++ b/hostsidetests/theme/app/Android.mk
@@ -0,0 +1,41 @@
+# Copyright (C) 2014 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+LOCAL_PATH:= $(call my-dir)
+
+include $(CLEAR_VARS)
+
+# Don't include this package in any target.
+LOCAL_MODULE_TAGS := optional
+
+# When built, explicitly put it in the data partition.
+LOCAL_MODULE_PATH := $(TARGET_OUT_DATA_APPS)
+# and because it is in data, do not strip classes.dex
+LOCAL_DEX_PREOPT := false
+
+LOCAL_PROGUARD_ENABLED := disabled
+
+LOCAL_JAVA_LIBRARIES := android.test.runner
+
+LOCAL_SRC_FILES := $(call all-java-files-under, src)
+
+#Flags to tell the Android Asset Packaging Tool not to strip for some densities
+LOCAL_AAPT_FLAGS = -c land -c xx_YY -c cs -c small -c normal -c large -c xlarge \
+ -c 640dpi -c 480dpi -c 400dpi -c 320dpi -c 240dpi -c 213dpi -c 160dpi -c 120dpi
+
+LOCAL_PACKAGE_NAME := CtsThemeDeviceApp
+
+LOCAL_SDK_VERSION := current
+
+include $(BUILD_CTS_PACKAGE)
diff --git a/hostsidetests/theme/app/AndroidManifest.xml b/hostsidetests/theme/app/AndroidManifest.xml
new file mode 100755
index 0000000..0add2da
--- /dev/null
+++ b/hostsidetests/theme/app/AndroidManifest.xml
@@ -0,0 +1,49 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ * Copyright (C) 2014 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ -->
+
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+    package="android.theme.app">
+
+    <uses-sdk android:minSdkVersion="17" />
+
+    <uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
+    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
+    <application>
+        <uses-library android:name="android.test.runner" />
+        <activity android:name=".HoloDeviceActivity" >
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+                <category android:name="android.intent.category.LAUNCHER" />
+            </intent-filter>
+        </activity>
+        <activity android:name=".DisplayInfoActivity"
+                  android:label="@string/display_info">
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+                <category android:name="android.intent.category.LAUNCHER" />
+            </intent-filter>
+        </activity>
+        <activity android:name=".CaptureActivity" />
+    </application>
+
+    <!--  self-instrumenting test package. -->
+    <instrumentation android:name="android.test.InstrumentationTestRunner"
+                     android:targetPackage="android.theme.app"
+                     android:label="Generates Theme reference images"/>
+
+</manifest>
+
diff --git a/hostsidetests/theme/app/res/drawable-400dpi/display_info.png b/hostsidetests/theme/app/res/drawable-400dpi/display_info.png
new file mode 100644
index 0000000..e5f1f96
--- /dev/null
+++ b/hostsidetests/theme/app/res/drawable-400dpi/display_info.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/display_info.png b/hostsidetests/theme/app/res/drawable-hdpi/display_info.png
similarity index 100%
rename from tests/tests/holo/res/drawable-hdpi/display_info.png
rename to hostsidetests/theme/app/res/drawable-hdpi/display_info.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/display_info.png b/hostsidetests/theme/app/res/drawable-ldpi/display_info.png
similarity index 100%
rename from tests/tests/holo/res/drawable-ldpi/display_info.png
rename to hostsidetests/theme/app/res/drawable-ldpi/display_info.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/display_info.png b/hostsidetests/theme/app/res/drawable-mdpi/display_info.png
similarity index 100%
rename from tests/tests/holo/res/drawable-mdpi/display_info.png
rename to hostsidetests/theme/app/res/drawable-mdpi/display_info.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/display_info.png b/hostsidetests/theme/app/res/drawable-tvdpi/display_info.png
similarity index 100%
rename from tests/tests/holo/res/drawable-tvdpi/display_info.png
rename to hostsidetests/theme/app/res/drawable-tvdpi/display_info.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/display_info.png b/hostsidetests/theme/app/res/drawable-xhdpi/display_info.png
similarity index 100%
rename from tests/tests/holo/res/drawable-xhdpi/display_info.png
rename to hostsidetests/theme/app/res/drawable-xhdpi/display_info.png
Binary files differ
diff --git a/hostsidetests/theme/app/res/drawable-xxhdpi/display_info.png b/hostsidetests/theme/app/res/drawable-xxhdpi/display_info.png
new file mode 100644
index 0000000..255c28f
--- /dev/null
+++ b/hostsidetests/theme/app/res/drawable-xxhdpi/display_info.png
Binary files differ
diff --git a/hostsidetests/theme/app/res/layout/button.xml b/hostsidetests/theme/app/res/layout/button.xml
new file mode 100644
index 0000000..75c480c
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/button.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<Button xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/button"
+        />
diff --git a/hostsidetests/theme/app/res/layout/calendarview.xml b/hostsidetests/theme/app/res/layout/calendarview.xml
new file mode 100644
index 0000000..130cbae
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/calendarview.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<CalendarView xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="match_parent"
+        android:layout_height="match_parent"
+        />
diff --git a/hostsidetests/theme/app/res/layout/checkbox.xml b/hostsidetests/theme/app/res/layout/checkbox.xml
new file mode 100644
index 0000000..925b950
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/checkbox.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<CheckBox xmlns:android="http://schemas.android.com/apk/res/android"
+        android:text="@string/checkbox"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        />
+
diff --git a/hostsidetests/theme/app/res/layout/chronometer.xml b/hostsidetests/theme/app/res/layout/chronometer.xml
new file mode 100644
index 0000000..618de0a
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/chronometer.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<Chronometer xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        />
diff --git a/hostsidetests/theme/app/res/layout/color_blue_bright.xml b/hostsidetests/theme/app/res/layout/color_blue_bright.xml
new file mode 100644
index 0000000..f407940
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/color_blue_bright.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<TextView xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/textview"
+        android:textColor="@android:color/holo_blue_bright"
+        />
diff --git a/hostsidetests/theme/app/res/layout/color_blue_dark.xml b/hostsidetests/theme/app/res/layout/color_blue_dark.xml
new file mode 100644
index 0000000..0a306da
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/color_blue_dark.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<TextView xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/textview"
+        android:textColor="@android:color/holo_blue_dark"
+        />
diff --git a/hostsidetests/theme/app/res/layout/color_blue_light.xml b/hostsidetests/theme/app/res/layout/color_blue_light.xml
new file mode 100644
index 0000000..bc784cb
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/color_blue_light.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<TextView xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/textview"
+        android:textColor="@android:color/holo_blue_light"
+        />
diff --git a/hostsidetests/theme/app/res/layout/color_green_dark.xml b/hostsidetests/theme/app/res/layout/color_green_dark.xml
new file mode 100644
index 0000000..be9c1d8
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/color_green_dark.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<TextView xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/textview"
+        android:textColor="@android:color/holo_green_dark"
+        />
diff --git a/hostsidetests/theme/app/res/layout/color_green_light.xml b/hostsidetests/theme/app/res/layout/color_green_light.xml
new file mode 100644
index 0000000..b4d7843
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/color_green_light.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<TextView xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/textview"
+        android:textColor="@android:color/holo_green_light"
+        />
diff --git a/hostsidetests/theme/app/res/layout/color_orange_dark.xml b/hostsidetests/theme/app/res/layout/color_orange_dark.xml
new file mode 100644
index 0000000..729e693
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/color_orange_dark.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<TextView xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/textview"
+        android:textColor="@android:color/holo_orange_dark"
+        />
diff --git a/hostsidetests/theme/app/res/layout/color_orange_light.xml b/hostsidetests/theme/app/res/layout/color_orange_light.xml
new file mode 100644
index 0000000..a760238
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/color_orange_light.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<TextView xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/textview"
+        android:textColor="@android:color/holo_orange_light"
+        />
diff --git a/hostsidetests/theme/app/res/layout/color_purple.xml b/hostsidetests/theme/app/res/layout/color_purple.xml
new file mode 100644
index 0000000..e9f22a9
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/color_purple.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<TextView xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/textview"
+        android:textColor="@android:color/holo_purple"
+        />
diff --git a/hostsidetests/theme/app/res/layout/color_red_dark.xml b/hostsidetests/theme/app/res/layout/color_red_dark.xml
new file mode 100644
index 0000000..e2aef39
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/color_red_dark.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<TextView xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/textview"
+        android:textColor="@android:color/holo_red_dark"
+        />
diff --git a/hostsidetests/theme/app/res/layout/color_red_light.xml b/hostsidetests/theme/app/res/layout/color_red_light.xml
new file mode 100644
index 0000000..ed0842c
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/color_red_light.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<TextView xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/textview"
+        android:textColor="@android:color/holo_red_light"
+        />
diff --git a/hostsidetests/theme/app/res/layout/datepicker.xml b/hostsidetests/theme/app/res/layout/datepicker.xml
new file mode 100644
index 0000000..264e3a1
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/datepicker.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<DatePicker xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        />
diff --git a/hostsidetests/theme/app/res/layout/display_info.xml b/hostsidetests/theme/app/res/layout/display_info.xml
new file mode 100644
index 0000000..167d935
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/display_info.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+    android:orientation="vertical"
+    android:layout_width="match_parent"
+    android:layout_height="match_parent"
+    >
+    <ImageView
+        android:src="@drawable/display_info"
+        android:layout_width="fill_parent"
+        android:layout_height="wrap_content"
+        />
+    <TextView
+        android:id="@+id/text"
+        android:layout_width="fill_parent"
+        android:layout_height="wrap_content"
+        />
+</LinearLayout>
+
diff --git a/hostsidetests/theme/app/res/layout/edittext.xml b/hostsidetests/theme/app/res/layout/edittext.xml
new file mode 100644
index 0000000..6fb6714
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/edittext.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<EditText xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        />
diff --git a/hostsidetests/theme/app/res/layout/empty.xml b/hostsidetests/theme/app/res/layout/empty.xml
new file mode 100644
index 0000000..a2190e5
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/empty.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="0dip"
+        android:layout_height="0dip"
+        />
diff --git a/hostsidetests/theme/app/res/layout/holo_test.xml b/hostsidetests/theme/app/res/layout/holo_test.xml
new file mode 100644
index 0000000..0aef953
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/holo_test.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+        android:orientation="vertical"
+        android:layout_width="match_parent"
+        android:layout_height="match_parent">
+    <android.theme.app.ReferenceViewGroup
+            android:id="@+id/reference_view_group"
+            android:orientation="vertical"
+            android:layout_width="match_parent"
+            android:layout_height="match_parent"
+            />
+</LinearLayout>
diff --git a/hostsidetests/theme/app/res/layout/progressbar.xml b/hostsidetests/theme/app/res/layout/progressbar.xml
new file mode 100644
index 0000000..0a385e9
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/progressbar.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<ProgressBar xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        />
diff --git a/hostsidetests/theme/app/res/layout/progressbar_horizontal_0.xml b/hostsidetests/theme/app/res/layout/progressbar_horizontal_0.xml
new file mode 100644
index 0000000..5db47a7
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/progressbar_horizontal_0.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<ProgressBar xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:progress="0"
+        android:max="100"
+        style="?android:attr/progressBarStyleHorizontal"
+        />
diff --git a/hostsidetests/theme/app/res/layout/progressbar_horizontal_100.xml b/hostsidetests/theme/app/res/layout/progressbar_horizontal_100.xml
new file mode 100644
index 0000000..55de8d5
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/progressbar_horizontal_100.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<ProgressBar xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:progress="100"
+        android:max="100"
+        style="?android:attr/progressBarStyleHorizontal"
+        />
diff --git a/hostsidetests/theme/app/res/layout/progressbar_horizontal_50.xml b/hostsidetests/theme/app/res/layout/progressbar_horizontal_50.xml
new file mode 100644
index 0000000..eb80d8d
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/progressbar_horizontal_50.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<ProgressBar xmlns:android="http://schemas.android.com/apk/res/android"
+        android:id="@+id/progressBar1"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:progress="50"
+        android:max="100"
+        style="?android:attr/progressBarStyleHorizontal"
+        />
diff --git a/hostsidetests/theme/app/res/layout/progressbar_large.xml b/hostsidetests/theme/app/res/layout/progressbar_large.xml
new file mode 100644
index 0000000..c1b1d86
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/progressbar_large.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<ProgressBar xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        style="?android:attr/progressBarStyleLarge"
+        />
diff --git a/hostsidetests/theme/app/res/layout/progressbar_small.xml b/hostsidetests/theme/app/res/layout/progressbar_small.xml
new file mode 100644
index 0000000..6bcba4a
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/progressbar_small.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<ProgressBar xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        style="?android:attr/progressBarStyleSmall"
+        />
diff --git a/hostsidetests/theme/app/res/layout/radiobutton.xml b/hostsidetests/theme/app/res/layout/radiobutton.xml
new file mode 100644
index 0000000..db8a635
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/radiobutton.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<RadioButton xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/radiobutton"
+        />
diff --git a/hostsidetests/theme/app/res/layout/radiobutton_checked.xml b/hostsidetests/theme/app/res/layout/radiobutton_checked.xml
new file mode 100644
index 0000000..eaac705
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/radiobutton_checked.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<RadioButton xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:checked="true"
+        android:text="@string/radiobutton_checked"
+        />
diff --git a/hostsidetests/theme/app/res/layout/radiogroup_horizontal.xml b/hostsidetests/theme/app/res/layout/radiogroup_horizontal.xml
new file mode 100644
index 0000000..0df80fc
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/radiogroup_horizontal.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<RadioGroup xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:orientation="horizontal"
+        >
+    <RadioButton android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:text="@string/radiobutton_1"
+            />
+    <RadioButton android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:text="@string/radiobutton_2"
+            />
+</RadioGroup>
diff --git a/hostsidetests/theme/app/res/layout/radiogroup_vertical.xml b/hostsidetests/theme/app/res/layout/radiogroup_vertical.xml
new file mode 100644
index 0000000..a7ad262
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/radiogroup_vertical.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<RadioGroup xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:orientation="vertical"
+        >
+    <RadioButton android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:text="@string/radiobutton_1"
+            />
+    <RadioButton android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:text="@string/radiobutton_2"
+            />
+</RadioGroup>
diff --git a/hostsidetests/theme/app/res/layout/ratingbar_0.xml b/hostsidetests/theme/app/res/layout/ratingbar_0.xml
new file mode 100644
index 0000000..e650840
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/ratingbar_0.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<RatingBar xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:rating="0"
+        android:numStars="5"
+        />
diff --git a/hostsidetests/theme/app/res/layout/ratingbar_2point5.xml b/hostsidetests/theme/app/res/layout/ratingbar_2point5.xml
new file mode 100644
index 0000000..d74d44d
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/ratingbar_2point5.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<RatingBar xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:rating="2.5"
+        android:numStars="5"
+        />
diff --git a/hostsidetests/theme/app/res/layout/ratingbar_5.xml b/hostsidetests/theme/app/res/layout/ratingbar_5.xml
new file mode 100644
index 0000000..d6db072
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/ratingbar_5.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<RatingBar xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:rating="5"
+        android:numStars="5"
+        />
diff --git a/hostsidetests/theme/app/res/layout/searchview.xml b/hostsidetests/theme/app/res/layout/searchview.xml
new file mode 100644
index 0000000..f4bdb9f
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/searchview.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<SearchView xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="fill_parent"
+        android:layout_height="wrap_content"
+        />
diff --git a/hostsidetests/theme/app/res/layout/seekbar_0.xml b/hostsidetests/theme/app/res/layout/seekbar_0.xml
new file mode 100644
index 0000000..25488be
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/seekbar_0.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<SeekBar xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:progress="0"
+        android:max="100"
+        />
diff --git a/hostsidetests/theme/app/res/layout/seekbar_100.xml b/hostsidetests/theme/app/res/layout/seekbar_100.xml
new file mode 100644
index 0000000..0a2b8dd
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/seekbar_100.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<SeekBar xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:progress="100"
+        android:max="100"
+        />
diff --git a/hostsidetests/theme/app/res/layout/seekbar_50.xml b/hostsidetests/theme/app/res/layout/seekbar_50.xml
new file mode 100644
index 0000000..6efd6de
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/seekbar_50.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<SeekBar xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:progress="50"
+        android:max="100"
+        />
diff --git a/hostsidetests/theme/app/res/layout/spinner.xml b/hostsidetests/theme/app/res/layout/spinner.xml
new file mode 100644
index 0000000..cc2d88f
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/spinner.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<Spinner xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:prompt="@string/spinner_prompt"
+        android:entries="@array/spinner_entries"
+        />
diff --git a/hostsidetests/theme/app/res/layout/switch_button.xml b/hostsidetests/theme/app/res/layout/switch_button.xml
new file mode 100644
index 0000000..98da6bd
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/switch_button.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<Switch xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/switch_button"
+        />
diff --git a/hostsidetests/theme/app/res/layout/switch_button_checked.xml b/hostsidetests/theme/app/res/layout/switch_button_checked.xml
new file mode 100644
index 0000000..4a075d1
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/switch_button_checked.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<Switch xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:checked="true"
+        android:text="@string/switch_button"
+        />
diff --git a/hostsidetests/theme/app/res/layout/textview.xml b/hostsidetests/theme/app/res/layout/textview.xml
new file mode 100644
index 0000000..2ea739f
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/textview.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<TextView xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:text="@string/textview"
+        />
diff --git a/hostsidetests/theme/app/res/layout/timepicker.xml b/hostsidetests/theme/app/res/layout/timepicker.xml
new file mode 100644
index 0000000..8456dd1
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/timepicker.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<TimePicker xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        />
diff --git a/hostsidetests/theme/app/res/layout/togglebutton.xml b/hostsidetests/theme/app/res/layout/togglebutton.xml
new file mode 100644
index 0000000..bad99ba
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/togglebutton.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<ToggleButton xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        />
+
diff --git a/hostsidetests/theme/app/res/layout/togglebutton_checked.xml b/hostsidetests/theme/app/res/layout/togglebutton_checked.xml
new file mode 100644
index 0000000..55d7c11
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/togglebutton_checked.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<ToggleButton xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:checked="true"
+        />
diff --git a/hostsidetests/theme/app/res/layout/zoomcontrols.xml b/hostsidetests/theme/app/res/layout/zoomcontrols.xml
new file mode 100644
index 0000000..fedea4b
--- /dev/null
+++ b/hostsidetests/theme/app/res/layout/zoomcontrols.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<ZoomControls xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        />
diff --git a/hostsidetests/theme/app/res/values/arrays.xml b/hostsidetests/theme/app/res/values/arrays.xml
new file mode 100644
index 0000000..680395b
--- /dev/null
+++ b/hostsidetests/theme/app/res/values/arrays.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<resources>
+    <string-array name="spinner_entries">
+        <item>Spinner 1</item>
+        <item>Spinner 2</item>
+        <item>Spinner 3</item>
+    </string-array>
+</resources>
diff --git a/hostsidetests/theme/app/res/values/dimens.xml b/hostsidetests/theme/app/res/values/dimens.xml
new file mode 100644
index 0000000..3316bfd
--- /dev/null
+++ b/hostsidetests/theme/app/res/values/dimens.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<resources>
+    <dimen name="reference_width">320dp</dimen>
+    <dimen name="reference_height">480dp</dimen>
+</resources>
\ No newline at end of file
diff --git a/hostsidetests/theme/app/res/values/strings.xml b/hostsidetests/theme/app/res/values/strings.xml
new file mode 100644
index 0000000..a69a2e0
--- /dev/null
+++ b/hostsidetests/theme/app/res/values/strings.xml
@@ -0,0 +1,84 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<resources>
+    <string name="holo_test_utilities">Holo Test Utilities</string>
+
+    <string name="display_info">Display Info</string>
+    <string name="display_info_text">Density DPI: %1$d\nDensity Bucket: %2$s\nWidth DP: %3$d\nHeight DP: %4$d</string>
+
+    <string name="button">Button</string>
+    <string name="checkbox">CheckBox</string>
+    <string name="chronometer">Chronometer</string>
+    <string name="datepicker">DatePicker</string>
+    <string name="edittext">EditText</string>
+    <string name="progressbar">ProgressBar</string>
+    <string name="progressbar_small">ProgressBar Small</string>
+    <string name="progressbar_large">ProgressBar Large</string>
+    <string name="progressbar_horizontal_0">ProgressBar Horizontal 0%</string>
+    <string name="progressbar_horizontal_50">ProgressBar Horizontal 50%</string>
+    <string name="progressbar_horizontal_100">ProgressBar Horizontal 100%</string>
+    <string name="radiobutton">RadioButton</string>
+    <string name="radiobutton_checked">RadioButton Checked</string>
+    <string name="radiogroup_horizontal">RadioGroup Horizontal</string>
+    <string name="radiogroup_vertical">RadioGroup Vertical</string>
+    <string name="ratingbar_0">RatingBar 0 Stars</string>
+    <string name="ratingbar_2point5">RatingBar 2.5 Stars</string>
+    <string name="ratingbar_5">RatingBar 5 Stars</string>
+    <string name="ratingbar_0_pressed">RatingBar 0 Stars Pressed</string>
+    <string name="ratingbar_2point5_pressed">RatingBar 2.5 Stars Pressed</string>
+    <string name="ratingbar_5_pressed">RatingBar 5 Stars Pressed</string>
+    <string name="searchview">SearchView</string>
+    <string name="searchview_query">SearchView Query</string>
+    <string name="searchview_query_hint">SearchView Query Hint</string>
+    <string name="seekbar_0">SeekBar 0%</string>
+    <string name="seekbar_50">SeekBar 50%</string>
+    <string name="seekbar_100">SeekBar 100%</string>
+    <string name="spinner">Spinner</string>
+    <string name="switch_button">Switch</string>
+    <string name="switch_button_checked">Switch Checked</string>
+    <string name="tabhost">TabHost</string>
+    <string name="textview">TextView</string>
+    <string name="timepicker">TimePicker</string>
+    <string name="togglebutton">ToggleButton</string>
+    <string name="togglebutton_checked">ToggleButton Checked</string>
+    <string name="zoomcontrols">ZoomControls</string>
+
+    <string name="alertdialog_onebutton">AlertDialog One Button</string>
+    <string name="alertdialog_twobuttons">AlertDialog Two Buttons</string>
+    <string name="alertdialog_threebuttons">AlertDialog Three Buttons</string>
+    <string name="alertdialog_list">AlertDialog List</string>
+    <string name="alertdialog_singlechoice">AlertDialog Single Choice</string>
+    <string name="alertdialog_multichoice">AlertDialog Multiple Choice</string>
+    <string name="progressdialog_spinner">ProgressDialog Spinner</string>
+    <string name="progressdialog_horizontal">ProgressDialog Horizontal</string>
+
+    <string name="color_blue_bright">Bright Blue Color</string>
+    <string name="color_blue_dark">Dark Blue Color</string>
+    <string name="color_blue_light">Light Blue Color</string>
+    <string name="color_green_dark">Dark Green Color</string>
+    <string name="color_green_light">Light Green Color</string>
+    <string name="color_orange_dark">Dark Orange Color</string>
+    <string name="color_orange_light">Light Orange Color</string>
+    <string name="color_purple">Purple Color</string>
+    <string name="color_red_dark">Dark Red Color</string>
+    <string name="color_red_light">Light Red Color</string>
+
+    <string name="spinner_prompt">Spinner Prompt</string>
+    <string name="radiobutton_1">Radio Button 1</string>
+    <string name="radiobutton_2">Radio Button 2</string>
+    <string name="loading">Loading...</string>
+
+</resources>
diff --git a/hostsidetests/theme/app/src/android/theme/app/CaptureActivity.java b/hostsidetests/theme/app/src/android/theme/app/CaptureActivity.java
new file mode 100644
index 0000000..d241ff6
--- /dev/null
+++ b/hostsidetests/theme/app/src/android/theme/app/CaptureActivity.java
@@ -0,0 +1,87 @@
+/*
+ * Copyright (C) 2014 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.theme.app;
+
+import android.app.Activity;
+import android.content.Intent;
+import android.os.Bundle;
+
+import java.util.concurrent.CountDownLatch;
+
+/**
+ * Iterates through all themes and all layouts, starting the Activity to capture the images.
+ */
+public class CaptureActivity extends Activity {
+
+    private static final int REQUEST_CODE = 1;
+
+    private static final int NUM_THEMES = 24;
+
+    private static final int NUM_LAYOUTS = 47;
+
+    private final CountDownLatch mLatch = new CountDownLatch(1);
+
+    private int mCurrentTheme = 0;
+
+    private int mCurrentLayout = 0;
+
+    @Override
+    protected void onCreate(Bundle savedInstanceState) {
+        super.onCreate(savedInstanceState);
+        generateNextImage();
+    }
+
+    /**
+     * Starts the activity to generate the next image.
+     */
+    private void generateNextImage() {
+        Intent intent = new Intent(this, HoloDeviceActivity.class);
+        intent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
+        intent.putExtra(HoloDeviceActivity.EXTRA_THEME, mCurrentTheme);
+        intent.putExtra(HoloDeviceActivity.EXTRA_LAYOUT, mCurrentLayout);
+        startActivityForResult(intent, REQUEST_CODE);
+    }
+
+    @Override
+    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
+        if (requestCode == REQUEST_CODE) {
+            if (resultCode == RESULT_OK) {
+                mCurrentLayout++;
+                if (mCurrentLayout >= NUM_LAYOUTS) {
+                    mCurrentLayout = 0;
+                    mCurrentTheme++;
+                }
+                if (mCurrentTheme < NUM_THEMES) {
+                    generateNextImage();
+                } else {
+                    finish();
+                }
+            } else {
+                finish();
+            }
+        }
+    }
+
+    public void finish() {
+        mLatch.countDown();
+        super.finish();
+    }
+
+    public void waitForCompletion() throws InterruptedException {
+        mLatch.await();
+    }
+}
diff --git a/hostsidetests/theme/app/src/android/theme/app/CaptureHolo.java b/hostsidetests/theme/app/src/android/theme/app/CaptureHolo.java
new file mode 100644
index 0000000..7e2b2c9
--- /dev/null
+++ b/hostsidetests/theme/app/src/android/theme/app/CaptureHolo.java
@@ -0,0 +1,37 @@
+/*
+ * Copyright (C) 2014 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.theme.app;
+
+import android.app.KeyguardManager;
+import android.content.Context;
+import android.test.ActivityInstrumentationTestCase2;
+
+public class CaptureHolo extends ActivityInstrumentationTestCase2<CaptureActivity> {
+
+    public CaptureHolo() {
+        super(CaptureActivity.class);
+    }
+
+    public void testCaptureHolo() throws Exception {
+        setActivityInitialTouchMode(true);
+        CaptureActivity activity = getActivity();
+        KeyguardManager keyguardManager =
+                (KeyguardManager) activity.getSystemService(Context.KEYGUARD_SERVICE);
+        keyguardManager.newKeyguardLock("holo_capture").disableKeyguard();
+        activity.waitForCompletion();
+    }
+}
diff --git a/hostsidetests/theme/app/src/android/theme/app/DisplayInfoActivity.java b/hostsidetests/theme/app/src/android/theme/app/DisplayInfoActivity.java
new file mode 100644
index 0000000..fc6ae13
--- /dev/null
+++ b/hostsidetests/theme/app/src/android/theme/app/DisplayInfoActivity.java
@@ -0,0 +1,75 @@
+/*
+ * Copyright (C) 2014 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.theme.app;
+
+import android.app.Activity;
+import android.theme.app.R;
+import android.os.Bundle;
+import android.util.DisplayMetrics;
+import android.view.Display;
+import android.view.WindowManager;
+import android.widget.TextView;
+
+/**
+ * An activity to display information about the device, including density bucket and dimensions.
+ */
+public class DisplayInfoActivity extends Activity {
+
+    @Override
+    protected void onCreate(Bundle savedInstanceState) {
+        super.onCreate(savedInstanceState);
+        setContentView(R.layout.display_info);
+
+        WindowManager windowManager = (WindowManager) getSystemService(WINDOW_SERVICE);
+        Display display = windowManager.getDefaultDisplay();
+        DisplayMetrics metrics = new DisplayMetrics();
+        display.getMetrics(metrics);
+
+        DisplayMetrics dm = getResources().getDisplayMetrics();
+        int width = Math.round(dm.widthPixels / dm.density);
+        int height = Math.round(dm.heightPixels / dm.density);
+
+        TextView text = (TextView) findViewById(R.id.text);
+        text.setText(getString(R.string.display_info_text, metrics.densityDpi,
+                getScreenDensityBucket(metrics), width, height));
+    }
+
+    private static String getScreenDensityBucket(DisplayMetrics metrics) {
+        switch (metrics.densityDpi) {
+            case DisplayMetrics.DENSITY_LOW:
+                return "ldpi";
+
+            case DisplayMetrics.DENSITY_MEDIUM:
+                return "mdpi";
+
+            case DisplayMetrics.DENSITY_HIGH:
+                return "hdpi";
+
+            case DisplayMetrics.DENSITY_XHIGH:
+                return "xhdpi";
+
+            case DisplayMetrics.DENSITY_XXHIGH:
+                return "xxhdpi";
+
+            case DisplayMetrics.DENSITY_TV:
+                return "tvdpi";
+
+            default:
+                return "" + metrics.densityDpi;
+        }
+    }
+}
diff --git a/hostsidetests/theme/app/src/android/theme/app/HoloDeviceActivity.java b/hostsidetests/theme/app/src/android/theme/app/HoloDeviceActivity.java
new file mode 100644
index 0000000..ab81dbd
--- /dev/null
+++ b/hostsidetests/theme/app/src/android/theme/app/HoloDeviceActivity.java
@@ -0,0 +1,299 @@
+/*
+ * Copyright (C) 2014 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.theme.app;
+
+import android.app.Activity;
+import android.content.Intent;
+import android.graphics.Bitmap;
+import android.graphics.Bitmap.CompressFormat;
+import android.graphics.Canvas;
+import android.os.AsyncTask;
+import android.os.Environment;
+import android.os.Bundle;
+import android.os.Handler;
+import android.theme.app.modifiers.DatePickerModifier;
+import android.theme.app.modifiers.ProgressBarModifier;
+import android.theme.app.modifiers.SearchViewModifier;
+import android.theme.app.modifiers.TimePickerModifier;
+import android.theme.app.modifiers.ViewCheckedModifier;
+import android.theme.app.modifiers.ViewPressedModifier;
+import android.theme.app.R;
+import android.theme.app.ReferenceViewGroup;
+import android.util.Log;
+import android.view.View;
+import android.widget.CheckBox;
+import android.widget.LinearLayout;
+
+import java.io.File;
+import java.io.FileOutputStream;
+import java.io.IOException;
+import java.lang.Override;
+
+/**
+ * A activity which display various UI elements with Holo theme.
+ */
+public class HoloDeviceActivity extends Activity {
+
+    public static final String EXTRA_THEME = "holo_theme_extra";
+
+    public static final String EXTRA_LAYOUT = "holo_layout_extra";
+
+    public static final String EXTRA_TIMEOUT = "holo_timeout_extra";
+
+    private static final String TAG = HoloDeviceActivity.class.getSimpleName();
+
+    private static final int TIMEOUT = 1 * 1000;//1 sec
+
+    private View mView;
+
+    private String mName;
+
+    private Bitmap mBitmap;
+
+    private ReferenceViewGroup mViewGroup;
+
+    @Override
+    public void onCreate(Bundle icicle) {
+        super.onCreate(icicle);
+        setUpUi(getIntent());
+    }
+
+    @Override
+    public void onNewIntent(Intent intent) {
+        super.onNewIntent(intent);
+        setUpUi(intent);
+    }
+
+    /**
+     * Configures the UI with the given intent
+     */
+    private void setUpUi(Intent intent) {
+        final Theme theme = themes[intent.getIntExtra(EXTRA_THEME, 0)];
+        final Layout layout = layouts[intent.getIntExtra(EXTRA_LAYOUT, 0)];
+        final int timeout = intent.getIntExtra(EXTRA_TIMEOUT, TIMEOUT);
+
+        setTheme(theme.mId);
+        setContentView(R.layout.holo_test);
+
+        mViewGroup = (ReferenceViewGroup) findViewById(R.id.reference_view_group);
+
+        mView = getLayoutInflater().inflate(layout.mId, mViewGroup, false);
+        mViewGroup.addView(mView);
+        if (layout.mModifier != null) {
+            layout.mModifier.modifyView(mView);
+        }
+        mViewGroup.measure(0, 0);
+        mViewGroup.layout(0, 0, mViewGroup.getMeasuredWidth(), mViewGroup.getMeasuredHeight());
+        mView.setFocusable(false);
+        mName = String.format("%s_%s", theme.mName, layout.mName);
+
+        final Handler handler = new Handler();
+        handler.postDelayed(new Runnable() {
+            @Override
+            public void run() {
+                new GenerateBitmapTask().execute();
+            }
+        }, timeout);
+        setResult(RESULT_CANCELED);//On success will be changed to OK
+    }
+
+    /**
+     * A task which gets the UI element to render to a bitmap and then saves that as a png
+     * asynchronously
+     */
+    private class GenerateBitmapTask extends AsyncTask<Void, Void, Boolean> {
+
+        @Override
+        protected void onPreExecute() {
+            final View v = mView;
+            mBitmap = Bitmap.createBitmap(v.getWidth(), v.getHeight(), Bitmap.Config.ARGB_8888);
+            final Canvas canvas = new Canvas(mBitmap);
+            v.draw(canvas);
+        }
+
+        @Override
+        protected Boolean doInBackground(Void... ignored) {
+            if (!Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) {
+                Log.i(TAG, "External storage for saving bitmaps is not mounted");
+                return false;
+            }
+            final File dir = new File(Environment.getExternalStorageDirectory(), "cts-holo-assets");
+            dir.mkdirs();
+            boolean success = false;
+            try {
+                final File file = new File(dir, mName + ".png");
+                FileOutputStream stream = null;
+                try {
+                    stream = new FileOutputStream(file);
+                    mBitmap.compress(CompressFormat.PNG, 100, stream);
+                } finally {
+                    if (stream != null) {
+                        stream.close();
+                    }
+                }
+                success = true;
+            } catch (Exception e) {
+                Log.e(TAG, e.getMessage());
+            } finally {
+                mBitmap.recycle();
+                mBitmap = null;
+            }
+            return success;
+        }
+
+        @Override
+        protected void onPostExecute(Boolean success) {
+            Log.i(TAG, success ? "OKAY" : "ERROR");
+            setResult(RESULT_OK);
+            finish();
+        }
+    }
+
+    /**
+     * A class to encapsulate information about a holo theme.
+     */
+    private static class Theme {
+
+        public final int mId;
+
+        public final String mName;
+
+        private Theme(int id, String name) {
+            mId = id;
+            mName = name;
+        }
+    }
+
+    private static final Theme[] themes = {
+            new Theme(android.R.style.Theme_Holo,
+                    "holo"),
+            new Theme(android.R.style.Theme_Holo_Dialog,
+                    "holo_dialog"),
+            new Theme(android.R.style.Theme_Holo_Dialog_MinWidth,
+                    "holo_dialog_minwidth"),
+            new Theme(android.R.style.Theme_Holo_Dialog_NoActionBar,
+                    "holo_dialog_noactionbar"),
+            new Theme(android.R.style.Theme_Holo_Dialog_NoActionBar_MinWidth,
+                    "holo_dialog_noactionbar_minwidth"),
+            new Theme(android.R.style.Theme_Holo_DialogWhenLarge,
+                    "holo_dialogwhenlarge"),
+            new Theme(android.R.style.Theme_Holo_DialogWhenLarge_NoActionBar,
+                    "holo_dialogwhenlarge_noactionbar"),
+            new Theme(android.R.style.Theme_Holo_InputMethod,
+                    "holo_inputmethod"),
+            new Theme(android.R.style.Theme_Holo_Light,
+                    "holo_light"),
+            new Theme(android.R.style.Theme_Holo_Light_DarkActionBar,
+                    "holo_light_darkactionbar"),
+            new Theme(android.R.style.Theme_Holo_Light_Dialog,
+                    "holo_light_dialog"),
+            new Theme(android.R.style.Theme_Holo_Light_Dialog_MinWidth,
+                    "holo_light_dialog_minwidth"),
+            new Theme(android.R.style.Theme_Holo_Light_Dialog_NoActionBar,
+                    "holo_light_dialog_noactionbar"),
+            new Theme(android.R.style.Theme_Holo_Light_Dialog_NoActionBar_MinWidth,
+                    "holo_light_dialog_noactionbar_minwidth"),
+            new Theme(android.R.style.Theme_Holo_Light_DialogWhenLarge,
+                    "holo_light_dialogwhenlarge"),
+            new Theme(android.R.style.Theme_Holo_Light_DialogWhenLarge_NoActionBar,
+                    "holo_light_dialogwhenlarge_noactionbar"),
+            new Theme(android.R.style.Theme_Holo_Light_NoActionBar,
+                    "holo_light_noactionbar"),
+            new Theme(android.R.style.Theme_Holo_Light_NoActionBar_Fullscreen,
+                    "holo_light_noactionbar_fullscreen"),
+            new Theme(android.R.style.Theme_Holo_Light_Panel,
+                    "holo_light_panel"),
+            new Theme(android.R.style.Theme_Holo_NoActionBar,
+                    "holo_noactionbar"),
+            new Theme(android.R.style.Theme_Holo_NoActionBar_Fullscreen,
+                    "holo_noactionbar_fullscreen"),
+            new Theme(android.R.style.Theme_Holo_Panel,
+                    "holo_panel"),
+            new Theme(android.R.style.Theme_Holo_Wallpaper,
+                    "holo_wallpaper"),
+            new Theme(android.R.style.Theme_Holo_Wallpaper_NoTitleBar,
+                    "holo_wallpaper_notitlebar")
+    };
+
+    /**
+     * A class to encapsulate information about a holo layout.
+     */
+    private static class Layout {
+
+        public final int mId;
+
+        public final String mName;
+
+        public final LayoutModifier mModifier;
+
+        private Layout(int id, String name, LayoutModifier modifier) {
+            mId = id;
+            mName = name;
+            mModifier = modifier;
+        }
+    }
+
+    private static final Layout[] layouts = {
+            new Layout(R.layout.button, "button", null),
+            new Layout(R.layout.button, "button_pressed", new ViewPressedModifier()),
+            new Layout(R.layout.checkbox, "checkbox", null),
+            new Layout(R.layout.checkbox, "checkbox_checked", new ViewCheckedModifier()),
+            new Layout(R.layout.chronometer, "chronometer", null),
+            new Layout(R.layout.color_blue_bright, "color_blue_bright", null),
+            new Layout(R.layout.color_blue_dark, "color_blue_dark", null),
+            new Layout(R.layout.color_blue_light, "color_blue_light", null),
+            new Layout(R.layout.color_green_dark, "color_green_dark", null),
+            new Layout(R.layout.color_green_light, "color_green_light", null),
+            new Layout(R.layout.color_orange_dark, "color_orange_dark", null),
+            new Layout(R.layout.color_orange_light, "color_orange_light", null),
+            new Layout(R.layout.color_purple, "color_purple", null),
+            new Layout(R.layout.color_red_dark, "color_red_dark", null),
+            new Layout(R.layout.color_red_light, "color_red_light", null),
+            new Layout(R.layout.datepicker, "datepicker", new DatePickerModifier()),
+            new Layout(R.layout.display_info, "display_info", null),
+            new Layout(R.layout.edittext, "edittext", null),
+            new Layout(R.layout.progressbar_horizontal_0, "progressbar_horizontal_0", null),
+            new Layout(R.layout.progressbar_horizontal_100, "progressbar_horizontal_100", null),
+            new Layout(R.layout.progressbar_horizontal_50, "progressbar_horizontal_50", null),
+            new Layout(R.layout.progressbar_large, "progressbar_large", new ProgressBarModifier()),
+            new Layout(R.layout.progressbar_small, "progressbar_small", new ProgressBarModifier()),
+            new Layout(R.layout.progressbar, "progressbar", new ProgressBarModifier()),
+            new Layout(R.layout.radiobutton_checked, "radiobutton_checked", null),
+            new Layout(R.layout.radiobutton, "radiobutton", null),
+            new Layout(R.layout.radiogroup_horizontal, "radiogroup_horizontal", null),
+            new Layout(R.layout.radiogroup_vertical, "radiogroup_vertical", null),
+            new Layout(R.layout.ratingbar_0, "ratingbar_0", null),
+            new Layout(R.layout.ratingbar_2point5, "ratingbar_2point5", null),
+            new Layout(R.layout.ratingbar_5, "ratingbar_5", null),
+            new Layout(R.layout.ratingbar_0, "ratingbar_0_pressed", new ViewPressedModifier()),
+            new Layout(R.layout.ratingbar_2point5, "ratingbar_2point5_pressed", new ViewPressedModifier()),
+            new Layout(R.layout.ratingbar_5, "ratingbar_5_pressed", new ViewPressedModifier()),
+            new Layout(R.layout.searchview, "searchview_query", new SearchViewModifier(SearchViewModifier.QUERY)),
+            new Layout(R.layout.searchview, "searchview_query_hint", new SearchViewModifier(SearchViewModifier.QUERY_HINT)),
+            new Layout(R.layout.seekbar_0, "seekbar_0", null),
+            new Layout(R.layout.seekbar_100, "seekbar_100", null),
+            new Layout(R.layout.seekbar_50, "seekbar_50", null),
+            new Layout(R.layout.spinner, "spinner", null),
+            new Layout(R.layout.switch_button_checked, "switch_button_checked", null),
+            new Layout(R.layout.switch_button, "switch_button", null),
+            new Layout(R.layout.textview, "textview", null),
+            new Layout(R.layout.timepicker, "timepicker", new TimePickerModifier()),
+            new Layout(R.layout.togglebutton_checked, "togglebutton_checked", null),
+            new Layout(R.layout.togglebutton, "togglebutton", null),
+            new Layout(R.layout.zoomcontrols, "zoomcontrols", null),
+    };
+}
diff --git a/hostsidetests/theme/app/src/android/theme/app/LayoutModifier.java b/hostsidetests/theme/app/src/android/theme/app/LayoutModifier.java
new file mode 100644
index 0000000..844c578
--- /dev/null
+++ b/hostsidetests/theme/app/src/android/theme/app/LayoutModifier.java
@@ -0,0 +1,34 @@
+/*
+ * Copyright (C) 2014 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.theme.app;
+
+import android.view.View;
+
+/**
+ * Interface used to do further setup on a view after it has been inflated.
+ */
+public interface LayoutModifier {
+
+    /** Actions to take before inflating the view. */
+    void prepare();
+
+    /**
+     * @param view inflated by the test activity
+     * @return the same view or another view that will be snapshotted by the test
+     */
+    View modifyView(View view);
+}
diff --git a/hostsidetests/theme/app/src/android/theme/app/ReferenceViewGroup.java b/hostsidetests/theme/app/src/android/theme/app/ReferenceViewGroup.java
new file mode 100644
index 0000000..077d8d7
--- /dev/null
+++ b/hostsidetests/theme/app/src/android/theme/app/ReferenceViewGroup.java
@@ -0,0 +1,85 @@
+/*
+ * Copyright (C) 2014 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.theme.app;
+
+import android.theme.app.R;
+
+import android.content.Context;
+import android.content.res.Resources;
+import android.util.AttributeSet;
+import android.view.View;
+import android.view.ViewGroup;
+
+/**
+ * {@link ViewGroup} that inflates to a reference width and height.
+ */
+public class ReferenceViewGroup extends ViewGroup {
+
+    private final int mWidthDp;
+    private final int mHeightDp;
+
+    public ReferenceViewGroup(Context context) {
+        this(context, null);
+    }
+
+    public ReferenceViewGroup(Context context, AttributeSet attrs) {
+        super(context, attrs);
+        Resources resources = context.getResources();
+        mWidthDp = resources.getDimensionPixelSize(R.dimen.reference_width);
+        mHeightDp = resources.getDimensionPixelSize(R.dimen.reference_height);
+    }
+
+    @Override
+    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
+        widthMeasureSpec = getMeasureSpec(LayoutParams.MATCH_PARENT, mWidthDp);
+        heightMeasureSpec = getMeasureSpec(LayoutParams.MATCH_PARENT, mHeightDp);
+
+        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
+
+        int childCount = getChildCount();
+        for (int i = 0; i < childCount; i++) {
+            View child = getChildAt(i);
+            LayoutParams params = child.getLayoutParams();
+            int width = getMeasureSpec(params.width, mWidthDp);
+            int height = getMeasureSpec(params.height, mHeightDp);
+            child.measure(width, height);
+        }
+    }
+
+    private int getMeasureSpec(int value, int size) {
+        if (value == LayoutParams.MATCH_PARENT) {
+            return MeasureSpec.makeMeasureSpec(size, MeasureSpec.EXACTLY);
+        } else if (value == LayoutParams.WRAP_CONTENT) {
+            return MeasureSpec.makeMeasureSpec(size, MeasureSpec.AT_MOST);
+        } else {
+            return value;
+        }
+    }
+
+    @Override
+    protected void onLayout(boolean changed, int l, int t, int r, int b) {
+        if (!changed) {
+            return;
+        }
+
+        int childCount = getChildCount();
+        for (int i = 0; i < childCount; i++) {
+            View child = getChildAt(i);
+            child.layout(0, 0, child.getMeasuredWidth(), child.getMeasuredHeight());
+        }
+    }
+}
diff --git a/hostsidetests/theme/app/src/android/theme/app/modifiers/AbstractLayoutModifier.java b/hostsidetests/theme/app/src/android/theme/app/modifiers/AbstractLayoutModifier.java
new file mode 100644
index 0000000..5c945ef
--- /dev/null
+++ b/hostsidetests/theme/app/src/android/theme/app/modifiers/AbstractLayoutModifier.java
@@ -0,0 +1,29 @@
+/*
+ * Copyright (C) 2014 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.theme.app.modifiers;
+
+import android.theme.app.LayoutModifier;
+
+/**
+ * {@link LayoutModifier} that does nothing in {@link #prepare()}.
+ */
+abstract class AbstractLayoutModifier implements LayoutModifier {
+
+    @Override
+    public void prepare() {
+    }
+}
diff --git a/hostsidetests/theme/app/src/android/theme/app/modifiers/DatePickerModifier.java b/hostsidetests/theme/app/src/android/theme/app/modifiers/DatePickerModifier.java
new file mode 100644
index 0000000..26ccd67
--- /dev/null
+++ b/hostsidetests/theme/app/src/android/theme/app/modifiers/DatePickerModifier.java
@@ -0,0 +1,34 @@
+/*
+ * Copyright (C) 2014 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.theme.app.modifiers;
+
+import android.theme.app.LayoutModifier;
+import android.view.View;
+import android.widget.DatePicker;
+
+/**
+ * {@link LayoutModifier} that sets a precise date on a {@link DatePicker}.
+ */
+public class DatePickerModifier extends AbstractLayoutModifier {
+
+    @Override
+    public View modifyView(View view) {
+        DatePicker tp = (DatePicker) view;
+        tp.updateDate(2011, 4, 20);
+        return view;
+    }
+}
diff --git a/hostsidetests/theme/app/src/android/theme/app/modifiers/ProgressBarModifier.java b/hostsidetests/theme/app/src/android/theme/app/modifiers/ProgressBarModifier.java
new file mode 100644
index 0000000..9849a64
--- /dev/null
+++ b/hostsidetests/theme/app/src/android/theme/app/modifiers/ProgressBarModifier.java
@@ -0,0 +1,38 @@
+/*
+ * Copyright (C) 2014 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.theme.app.modifiers;
+
+import android.view.View;
+import android.view.animation.Interpolator;
+import android.widget.ProgressBar;
+
+public class ProgressBarModifier extends AbstractLayoutModifier {
+
+    @Override
+    public View modifyView(View view) {
+        ProgressBar pb = (ProgressBar) view;
+        pb.setInterpolator(new ZeroInterpolator());
+        return pb;
+    }
+
+    private static class ZeroInterpolator implements Interpolator {
+        @Override
+        public float getInterpolation(float input) {
+            return 0;
+        }
+    }
+}
diff --git a/hostsidetests/theme/app/src/android/theme/app/modifiers/SearchViewModifier.java b/hostsidetests/theme/app/src/android/theme/app/modifiers/SearchViewModifier.java
new file mode 100644
index 0000000..75dd20a
--- /dev/null
+++ b/hostsidetests/theme/app/src/android/theme/app/modifiers/SearchViewModifier.java
@@ -0,0 +1,57 @@
+/*
+ * Copyright (C) 2014 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.theme.app.modifiers;
+
+import android.theme.app.R;
+
+import android.content.Context;
+import android.view.View;
+import android.widget.SearchView;
+
+public class SearchViewModifier extends AbstractLayoutModifier {
+
+    public static final int QUERY_HINT = 0;
+    public static final int QUERY = 1;
+
+    private int mSearchViewType;
+
+    public SearchViewModifier(int searchViewType) {
+        mSearchViewType = searchViewType;
+    }
+
+    @Override
+    public View modifyView(View view) {
+        SearchView searchView = (SearchView) view;
+        Context context = view.getContext();
+
+        switch (mSearchViewType) {
+            case QUERY_HINT:
+                searchView.setQueryHint(context.getString(R.string.searchview_query_hint));
+                break;
+
+            case QUERY:
+                searchView.setQuery(context.getString(R.string.searchview_query), false);
+                break;
+
+            default:
+                throw new IllegalArgumentException("Bad search view type: " + mSearchViewType);
+        }
+
+        searchView.setIconifiedByDefault(false);
+        return searchView;
+    }
+}
diff --git a/hostsidetests/theme/app/src/android/theme/app/modifiers/TimePickerModifier.java b/hostsidetests/theme/app/src/android/theme/app/modifiers/TimePickerModifier.java
new file mode 100644
index 0000000..b2ed4ef
--- /dev/null
+++ b/hostsidetests/theme/app/src/android/theme/app/modifiers/TimePickerModifier.java
@@ -0,0 +1,32 @@
+/*
+ * Copyright (C) 2014 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.theme.app.modifiers;
+
+import android.view.View;
+import android.widget.TimePicker;
+
+public class TimePickerModifier extends AbstractLayoutModifier {
+
+    @Override
+    public View modifyView(View view) {
+        TimePicker timePicker = (TimePicker) view;
+        timePicker.setIs24HourView(true);
+        timePicker.setCurrentHour(13);
+        timePicker.setCurrentMinute(37);
+        return view;
+    }
+}
diff --git a/hostsidetests/theme/app/src/android/theme/app/modifiers/ViewCheckedModifier.java b/hostsidetests/theme/app/src/android/theme/app/modifiers/ViewCheckedModifier.java
new file mode 100644
index 0000000..f55f057
--- /dev/null
+++ b/hostsidetests/theme/app/src/android/theme/app/modifiers/ViewCheckedModifier.java
@@ -0,0 +1,29 @@
+/*
+ * Copyright (C) 2014 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.theme.app.modifiers;
+
+import android.view.View;
+import android.widget.CheckBox;
+
+public class ViewCheckedModifier extends AbstractLayoutModifier {
+
+    @Override
+    public View modifyView(View view) {
+        ((CheckBox) view).setChecked(true);
+        return view;
+    }
+}
diff --git a/hostsidetests/theme/app/src/android/theme/app/modifiers/ViewPressedModifier.java b/hostsidetests/theme/app/src/android/theme/app/modifiers/ViewPressedModifier.java
new file mode 100644
index 0000000..a94962d
--- /dev/null
+++ b/hostsidetests/theme/app/src/android/theme/app/modifiers/ViewPressedModifier.java
@@ -0,0 +1,28 @@
+/*
+ * Copyright (C) 2014 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.theme.app.modifiers;
+
+import android.view.View;
+
+public class ViewPressedModifier extends AbstractLayoutModifier {
+
+    @Override
+    public View modifyView(View view) {
+        view.setPressed(true);
+        return view;
+    }
+}
diff --git a/hostsidetests/theme/assets/17/400dpi.zip b/hostsidetests/theme/assets/17/400dpi.zip
new file mode 100644
index 0000000..efcfa0b
--- /dev/null
+++ b/hostsidetests/theme/assets/17/400dpi.zip
Binary files differ
diff --git a/hostsidetests/theme/assets/17/hdpi.zip b/hostsidetests/theme/assets/17/hdpi.zip
new file mode 100644
index 0000000..b10eedf
--- /dev/null
+++ b/hostsidetests/theme/assets/17/hdpi.zip
Binary files differ
diff --git a/hostsidetests/theme/assets/17/ldpi.zip b/hostsidetests/theme/assets/17/ldpi.zip
new file mode 100644
index 0000000..ef9c883
--- /dev/null
+++ b/hostsidetests/theme/assets/17/ldpi.zip
Binary files differ
diff --git a/hostsidetests/theme/assets/17/mdpi.zip b/hostsidetests/theme/assets/17/mdpi.zip
new file mode 100644
index 0000000..5e8a04d
--- /dev/null
+++ b/hostsidetests/theme/assets/17/mdpi.zip
Binary files differ
diff --git a/hostsidetests/theme/assets/17/tvdpi.zip b/hostsidetests/theme/assets/17/tvdpi.zip
new file mode 100644
index 0000000..ad71d4e
--- /dev/null
+++ b/hostsidetests/theme/assets/17/tvdpi.zip
Binary files differ
diff --git a/hostsidetests/theme/assets/17/xhdpi.zip b/hostsidetests/theme/assets/17/xhdpi.zip
new file mode 100644
index 0000000..d48620d
--- /dev/null
+++ b/hostsidetests/theme/assets/17/xhdpi.zip
Binary files differ
diff --git a/hostsidetests/theme/src/android/theme/cts/ComparisonTask.java b/hostsidetests/theme/src/android/theme/cts/ComparisonTask.java
new file mode 100644
index 0000000..aae33e7
--- /dev/null
+++ b/hostsidetests/theme/src/android/theme/cts/ComparisonTask.java
@@ -0,0 +1,162 @@
+/*
+ * Copyright (C) 2014 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.theme.cts;
+
+import com.android.ddmlib.Log;
+import com.android.ddmlib.Log.LogLevel;
+import com.android.tradefed.device.ITestDevice;
+
+import java.awt.Color;
+import java.awt.image.BufferedImage;
+import java.io.File;
+import java.lang.String;
+import java.util.concurrent.Callable;
+
+import javax.imageio.ImageIO;
+
+/**
+ * Compares the images generated by the device with the reference images.
+ */
+public class ComparisonTask implements Callable<Boolean> {
+
+    private static final String TAG = ComparisonTask.class.getSimpleName();
+
+    private static final int IMAGE_THRESHOLD = 2;
+
+    private static final String STORAGE_PATH_DEVICE = "/storage/emulated/legacy/cts-holo-assets/%s.png";
+
+    private static final String STORAGE_PATH_EMULATOR = "/sdcard/cts-holo-assets/%s.png";
+
+    private final ITestDevice mDevice;
+
+    private final File mReference;
+
+    private final String mName;
+
+    private final String mStoragePath;
+
+
+    public ComparisonTask(ITestDevice device, File reference, String name) {
+        mDevice = device;
+        mReference = reference;
+        mName = name;
+
+        if (mDevice.getSerialNumber().startsWith("emulator-")) {
+            mStoragePath = STORAGE_PATH_EMULATOR;
+        } else {
+            mStoragePath = STORAGE_PATH_DEVICE;
+        }
+    }
+
+    public Boolean call() {
+        boolean success = false;
+        File generated = null;
+        try {
+            generated = File.createTempFile("gen_" + mName, ".png");
+
+            mDevice.pullFile(String.format(mStoragePath, mName), generated);
+
+            final BufferedImage ref = ImageIO.read(mReference);
+            final BufferedImage gen = ImageIO.read(generated);
+            if (compare(ref, gen, IMAGE_THRESHOLD)) {
+                success = true;
+            } else {
+                File diff = File.createTempFile("diff_" + mName, ".png");
+                createDiff(ref, gen, diff);
+                Log.logAndDisplay(LogLevel.INFO, TAG, "Diff created: " + diff.getPath());
+            }
+        } catch (Exception e) {
+            Log.logAndDisplay(LogLevel.ERROR, TAG, e.toString());
+            e.printStackTrace();
+        } finally {
+            if (generated != null) {
+                generated.delete();
+            }
+        }
+        return success;
+    }
+
+    private static boolean compare(BufferedImage reference, BufferedImage generated, int threshold) {
+        final int w = generated.getWidth();
+        final int h = generated.getHeight();
+        if (w != reference.getWidth() || h != reference.getHeight()) {
+            return false;
+        }
+
+        for (int i = 0; i < w; i++) {
+            for (int j = 0; j < h; j++) {
+                final int p1 = reference.getRGB(i, j);
+                final int p2 = generated.getRGB(i, j);
+                final int dr = (p1 & 0x000000FF) - (p2 & 0x000000FF);
+                final int dg = ((p1 & 0x0000FF00) - (p2 & 0x0000FF00)) >> 8;
+                final int db = ((p1 & 0x00FF0000) - (p2 & 0x00FF0000)) >> 16;
+                final int da = ((p1 & 0xFF000000) - (p2 & 0xFF000000)) >> 24;
+
+                if (Math.abs(db) > threshold ||
+                        Math.abs(dg) > threshold ||
+                        Math.abs(dr) > threshold ||
+                        Math.abs(da) > threshold) {
+                    return false;
+                }
+            }
+        }
+        return true;
+    }
+
+    private static void createDiff(BufferedImage image1, BufferedImage image2, File out)
+            throws Exception {
+        final int w1 = image1.getWidth();
+        final int h1 = image1.getHeight();
+        final int w2 = image2.getWidth();
+        final int h2 = image2.getHeight();
+        final int width = Math.max(w1, w2);
+        final int height = Math.max(h1, h2);
+        // The diff will contain image1, image2 and the difference between the two.
+        final BufferedImage diff = new BufferedImage(width * 3, height, BufferedImage.TYPE_INT_ARGB);
+
+        for (int i = 0; i < width; i++) {
+            for (int j = 0; j < height; j++) {
+                final boolean inBounds1 = i < w1 && j < h1;
+                final boolean inBounds2 = i < w2 && j < h2;
+                int color1 = Color.WHITE.getRGB();
+                int color2 = Color.WHITE.getRGB();
+                int color3;
+                if (inBounds1 && inBounds2) {
+                    color1 = image1.getRGB(i, j);
+                    color2 = image2.getRGB(i, j);
+                    color3 = color1 == color2 ? color1 : Color.RED.getRGB();
+                } else if (inBounds1 && !inBounds2) {
+                    color1 = image1.getRGB(i, j);
+                    color3 = Color.BLUE.getRGB();
+                } else if (!inBounds1 && inBounds2) {
+                    color2 = image2.getRGB(i, j);
+                    color3 = Color.GREEN.getRGB();
+                } else {
+                    color3 = Color.MAGENTA.getRGB();
+                }
+                int x = i;
+                diff.setRGB(x, j, color1);
+                x += width;
+                diff.setRGB(x, j, color2);
+                x += width;
+                diff.setRGB(x, j, color3);
+            }
+        }
+        ImageIO.write(diff, "png", out);
+    }
+
+}
diff --git a/hostsidetests/theme/src/android/theme/cts/ThemeHostTest.java b/hostsidetests/theme/src/android/theme/cts/ThemeHostTest.java
new file mode 100644
index 0000000..c9688fb
--- /dev/null
+++ b/hostsidetests/theme/src/android/theme/cts/ThemeHostTest.java
@@ -0,0 +1,347 @@
+/*
+ * Copyright (C) 2014 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.theme.cts;
+
+import com.android.cts.tradefed.build.CtsBuildHelper;
+import com.android.ddmlib.Log;
+import com.android.ddmlib.Log.LogLevel;
+import com.android.ddmlib.IShellOutputReceiver;
+import com.android.tradefed.build.IBuildInfo;
+import com.android.tradefed.device.ITestDevice;
+import com.android.tradefed.testtype.DeviceTestCase;
+import com.android.tradefed.testtype.IBuildReceiver;
+
+import android.cts.util.TimeoutReq;
+
+import java.io.File;
+import java.io.FileOutputStream;
+import java.io.InputStream;
+import java.lang.String;
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.Scanner;
+import java.util.concurrent.Callable;
+import java.util.concurrent.Executors;
+import java.util.concurrent.ExecutorCompletionService;
+import java.util.concurrent.ExecutorService;
+import java.util.regex.Matcher;
+import java.util.regex.Pattern;
+import java.util.zip.ZipEntry;
+import java.util.zip.ZipInputStream;
+
+/**
+ * Test to check the Holo theme has not been changed.
+ */
+public class ThemeHostTest extends DeviceTestCase implements IBuildReceiver {
+
+    private static final String TAG = ThemeHostTest.class.getSimpleName();
+
+    private static final int CAPTURE_TIMEOUT = 500;//0.5sec in ms
+
+    private static final int ADB_TIMEOUT = 60 * 60 * 1000;//60mins in ms
+
+    /** The package name of the APK. */
+    private static final String PACKAGE = "android.theme.app";
+
+    /** The file name of the APK. */
+    private static final String APK = "CtsThemeDeviceApp.apk";
+
+    /** The class name of the main activity in the APK. */
+    private static final String CLASS = "HoloDeviceActivity";
+
+    /** The command to launch the main activity. */
+    private static final String START_CMD = String.format(
+            "am start -W -a android.intent.action.MAIN -n %s/%s.%s", PACKAGE, PACKAGE, CLASS);
+
+    private static final String STOP_CMD = String.format("am force-stop %s", PACKAGE);
+
+    private static final String DENSITY_PROP_DEVICE = "ro.sf.lcd_density";
+
+    private static final String DENSITY_PROP_EMULATOR = "qemu.sf.lcd_density";
+
+    // Intent extras
+    protected final static String INTENT_STRING_EXTRA = " --es %s %s";
+
+    protected final static String INTENT_BOOLEAN_EXTRA = " --ez %s %b";
+
+    protected final static String INTENT_INTEGER_EXTRA = " --ei %s %d";
+
+    // Intent extra keys
+    private static final String EXTRA_THEME = "holo_theme_extra";
+
+    private static final String EXTRA_LAYOUT = "holo_layout_extra";
+
+    private static final String EXTRA_TIMEOUT = "holo_timeout_extra";
+
+    private static final String[] THEMES = {
+            "holo",
+            "holo_dialog",
+            "holo_dialog_minwidth",
+            "holo_dialog_noactionbar",
+            "holo_dialog_noactionbar_minwidth",
+            "holo_dialogwhenlarge",
+            "holo_dialogwhenlarge_noactionbar",
+            "holo_inputmethod",
+            "holo_light",
+            "holo_light_darkactionbar",
+            "holo_light_dialog",
+            "holo_light_dialog_minwidth",
+            "holo_light_dialog_noactionbar",
+            "holo_light_dialog_noactionbar_minwidth",
+            "holo_light_dialogwhenlarge",
+            "holo_light_dialogwhenlarge_noactionbar",
+            "holo_light_noactionbar",
+            "holo_light_noactionbar_fullscreen",
+            "holo_light_panel",
+            "holo_noactionbar",
+            "holo_noactionbar_fullscreen",
+            "holo_panel",
+            "holo_wallpaper",
+            "holo_wallpaper_notitlebar",
+    };
+
+    private final int NUM_THEMES = THEMES.length;
+
+    private static final String[] LAYOUTS = {
+            "button",
+            "button_pressed",
+            "checkbox",
+            "checkbox_checked",
+            "chronometer",
+            "color_blue_bright",
+            "color_blue_dark",
+            "color_blue_light",
+            "color_green_dark",
+            "color_green_light",
+            "color_orange_dark",
+            "color_orange_light",
+            "color_purple",
+            "color_red_dark",
+            "color_red_light",
+            "datepicker",
+            "display_info",
+            "edittext",
+            "progressbar_horizontal_0",
+            "progressbar_horizontal_100",
+            "progressbar_horizontal_50",
+            "progressbar_large",
+            "progressbar_small",
+            "progressbar",
+            "radiobutton_checked",
+            "radiobutton",
+            "radiogroup_horizontal",
+            "radiogroup_vertical",
+            "ratingbar_0",
+            "ratingbar_2point5",
+            "ratingbar_5",
+            "ratingbar_0_pressed",
+            "ratingbar_2point5_pressed",
+            "ratingbar_5_pressed",
+            "searchview_query",
+            "searchview_query_hint",
+            "seekbar_0",
+            "seekbar_100",
+            "seekbar_50",
+            "spinner",
+            "switch_button_checked",
+            "switch_button",
+            "textview",
+            "timepicker",
+            "togglebutton_checked",
+            "togglebutton",
+            "zoomcontrols",
+    };
+
+    private final int NUM_LAYOUTS = LAYOUTS.length;
+
+    private final HashMap<String, File> mReferences = new HashMap<String, File>();
+
+    /** A reference to the build. */
+    private CtsBuildHelper mBuild;
+
+    /** A reference to the device under test. */
+    private ITestDevice mDevice;
+
+    private ExecutorService mExecutionService;
+
+    private ExecutorCompletionService<Boolean> mCompletionService;
+
+    @Override
+    public void setBuild(IBuildInfo buildInfo) {
+        // Get the build, this is used to access the APK.
+        mBuild = CtsBuildHelper.createBuildHelper(buildInfo);
+    }
+
+    @Override
+    protected void setUp() throws Exception {
+        super.setUp();
+        // Get the device, this gives a handle to run commands and install APKs.
+        mDevice = getDevice();
+        // Remove any previously installed versions of this APK.
+        mDevice.uninstallPackage(PACKAGE);
+        // Get the APK from the build.
+        File app = mBuild.getTestApp(APK);
+        // Install the APK on the device.
+        mDevice.installPackage(app, false);
+
+        final String densityProp;
+
+        if (mDevice.getSerialNumber().startsWith("emulator-")) {
+            densityProp = DENSITY_PROP_EMULATOR;
+        } else {
+            densityProp = DENSITY_PROP_DEVICE;
+        }
+
+        final String zip = String.format("/%s.zip",
+                getDensityBucket(Integer.parseInt(mDevice.getProperty(densityProp))));
+        Log.logAndDisplay(LogLevel.INFO, TAG, "Loading resources from " + zip);
+
+
+        final InputStream zipStream = this.getClass().getResourceAsStream(zip);
+        if (zipStream != null) {
+            final ZipInputStream in = new ZipInputStream(zipStream);
+            try {
+                ZipEntry ze;
+                final byte[] buffer = new byte[1024];
+                while ((ze = in.getNextEntry()) != null) {
+                    final String name = ze.getName();
+                    final File tmp = File.createTempFile("ref_" + name, ".png");
+                    final FileOutputStream out = new FileOutputStream(tmp);
+                    int count;
+                    while ((count = in.read(buffer)) != -1) {
+                        out.write(buffer, 0, count);
+                    }
+                    out.flush();
+                    out.close();
+                    mReferences.put(name, tmp);
+                }
+            } finally {
+                in.close();
+            }
+        }
+
+        mExecutionService = Executors.newFixedThreadPool(2);// 2 worker threads
+        mCompletionService = new ExecutorCompletionService<Boolean>(mExecutionService);
+    }
+
+    @Override
+    protected void tearDown() throws Exception {
+        // Delete the temp files
+        for (File ref : mReferences.values()) {
+            ref.delete();
+        }
+        mExecutionService.shutdown();
+        // Remove the APK.
+        mDevice.uninstallPackage(PACKAGE);
+        super.tearDown();
+    }
+
+    @TimeoutReq(minutes = 60)
+    public void testHoloThemes() throws Exception {
+        if (mReferences.isEmpty()) {
+            Log.logAndDisplay(LogLevel.INFO, TAG,
+                    "Skipped HoloThemes test due to no reference images");
+            return;
+        }
+
+        int numTasks = 0;
+        for (int i = 0; i < NUM_THEMES; i++) {
+            final String themeName = THEMES[i];
+            for (int j = 0; j < NUM_LAYOUTS; j++) {
+                final String name = String.format("%s_%s", themeName, LAYOUTS[j]);
+                if (runCapture(i, j)) {
+                    final File ref = mReferences.get(name + ".png");
+                    if (!ref.exists()) {
+                        Log.logAndDisplay(LogLevel.INFO, TAG,
+                                "Skipping theme test due to missing reference for reference image " + name);
+                        continue;
+                    }
+                    mCompletionService.submit(new ComparisonTask(mDevice, ref, name));
+                    numTasks++;
+                } else {
+                    Log.logAndDisplay(LogLevel.ERROR, TAG, "Capture failed: " + name);
+                }
+            }
+        }
+        int failures = 0;
+        for (int i = 0; i < numTasks; i++) {
+            failures += mCompletionService.take().get() ? 0 : 1;
+        }
+        assertTrue(failures + " failures in theme test", failures == 0);
+    }
+
+    private boolean runCapture(int themeId, int layoutId) throws Exception {
+        final StringBuilder sb = new StringBuilder(START_CMD);
+        sb.append(String.format(INTENT_INTEGER_EXTRA, EXTRA_THEME, themeId));
+        sb.append(String.format(INTENT_INTEGER_EXTRA, EXTRA_LAYOUT, layoutId));
+        sb.append(String.format(INTENT_INTEGER_EXTRA, EXTRA_TIMEOUT, CAPTURE_TIMEOUT));
+        final String startCommand = sb.toString();
+        // Clear logcat
+        mDevice.executeAdbCommand("logcat", "-c");
+        // Stop any existing instances
+        mDevice.executeShellCommand(STOP_CMD);
+        // Start activity
+        mDevice.executeShellCommand(startCommand);
+
+        boolean success = false;
+        boolean waiting = true;
+        while (waiting) {
+            // Dump logcat.
+            final String logs = mDevice.executeAdbCommand("logcat", "-d", CLASS + ":I", "*:S");
+            // Search for string.
+            final Scanner in = new Scanner(logs);
+            while (in.hasNextLine()) {
+                final String line = in.nextLine();
+                if (line.startsWith("I/" + CLASS)) {
+                    final String s = line.split(":")[1].trim();
+                    if (s.equals("OKAY")) {
+                        success = true;
+                        waiting = false;
+                    } else if (s.equals("ERROR")) {
+                        success = false;
+                        waiting = false;
+                    }
+                }
+            }
+        }
+
+        return success;
+    }
+
+    private static String getDensityBucket(int density) {
+        switch (density) {
+            case 120:
+                return "ldpi";
+            case 160:
+                return "mdpi";
+            case 213:
+                return "tvdpi";
+            case 240:
+                return "hdpi";
+            case 320:
+                return "xhdpi";
+            case 400:
+                return "400dpi";
+            case 480:
+                return "xxhdpi";
+            case 640:
+                return "xxxhdpi";
+            default:
+                return "" + density;
+        }
+    }
+}
diff --git a/tests/src/android/opengl/cts/GLSurfaceViewStubActivity.java b/tests/src/android/opengl/cts/GLSurfaceViewStubActivity.java
index 79da413..85ad172 100644
--- a/tests/src/android/opengl/cts/GLSurfaceViewStubActivity.java
+++ b/tests/src/android/opengl/cts/GLSurfaceViewStubActivity.java
@@ -19,6 +19,7 @@
 import android.app.Activity;
 import android.opengl.GLSurfaceView;
 import android.os.Bundle;
+import android.view.Window;
 
 import javax.microedition.khronos.egl.EGLConfig;
 import javax.microedition.khronos.opengles.GL10;
@@ -100,6 +101,7 @@
         if (mRenderModeSet) {
             mView.setRenderMode(mRenderMode);
         }
+        this.requestWindowFeature(Window.FEATURE_NO_TITLE);
         setContentView(mView);
     }
 
diff --git a/tests/src/android/view/inputmethod/cts/InputMethodInfoStub.java b/tests/src/android/view/inputmethod/cts/InputMethodInfoStub.java
deleted file mode 100644
index 0eeefbe..0000000
--- a/tests/src/android/view/inputmethod/cts/InputMethodInfoStub.java
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * Copyright (C) 2008 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package android.view.inputmethod.cts;
-
-import android.inputmethodservice.InputMethodService;
-
-public class InputMethodInfoStub extends InputMethodService {
-
-}
diff --git a/tests/src/android/view/inputmethod/cts/InputMethodSettingsActivityStub.java b/tests/src/android/view/inputmethod/cts/InputMethodSettingsActivityStub.java
new file mode 100644
index 0000000..58aa364
--- /dev/null
+++ b/tests/src/android/view/inputmethod/cts/InputMethodSettingsActivityStub.java
@@ -0,0 +1,23 @@
+/*
+ * Copyright (C) 2008 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.view.inputmethod.cts;
+
+import android.preference.PreferenceActivity;
+
+public class InputMethodSettingsActivityStub extends PreferenceActivity {
+
+}
diff --git a/tests/tests/app/src/android/app/cts/ActivityManagerMemoryClassTest.java b/tests/tests/app/src/android/app/cts/ActivityManagerMemoryClassTest.java
index 1db04ea..622055c 100644
--- a/tests/tests/app/src/android/app/cts/ActivityManagerMemoryClassTest.java
+++ b/tests/tests/app/src/android/app/cts/ActivityManagerMemoryClassTest.java
@@ -90,6 +90,10 @@
                 expectedMinimumMemory = isXLarge ? 128 : 64;
                 break;
 
+            case DisplayMetrics.DENSITY_XXHIGH:
+                expectedMinimumMemory = isXLarge ? 256 : 128;
+                break;
+
             default:
                 throw new IllegalArgumentException("No memory requirement specified "
                         + " for screen density " + screenDensity);
diff --git a/tests/tests/dpi/src/android/dpi/cts/AspectRatioTest.java b/tests/tests/dpi/src/android/dpi/cts/AspectRatioTest.java
index 74a9f22..572c3f4 100644
--- a/tests/tests/dpi/src/android/dpi/cts/AspectRatioTest.java
+++ b/tests/tests/dpi/src/android/dpi/cts/AspectRatioTest.java
@@ -40,46 +40,27 @@
     }
 
     /**
-     * Get all the aspect rations in different orientations. They could be
-     * different due to the system bar being different sizes. Test that
-     * one of the aspect ratios is within the range.
+     * Get the full screen size directly (including system bar) to calculate
+     * aspect ratio. With this, the screen orientation doesn't affect the aspect
+     * ratio value anymore. Test that the aspect ratio is within the range.
      */
     public void testAspectRatio() throws Exception {
-        List<Double> aspectRatios = getAllAspectRatios();
-        for (double aspectRatio : aspectRatios) {
-            if (aspectRatio >= 1.333 && aspectRatio <= 1.86) {
-                return;
-            }
+        double aspectRatio = getRealAspectRatio(getActivity());
+        if (aspectRatio >= 1.333 && aspectRatio <= 1.86) {
+            return;
         }
-        fail("Aspect ratios were not between 1.333 and 1.86: " + aspectRatios);
+        fail("Aspect ratio was not between 1.333 and 1.86: " + aspectRatio);
     }
 
-    private List<Double> getAllAspectRatios() throws Exception {
-        List<Double> aspectRatios = new ArrayList<Double>();
-        for (int i = 0; i < ORIENTATIONS.length; i++) {
-            Activity activity = startOrientationActivity(ORIENTATIONS[i]);
-            aspectRatios.add(getAspectRatio(activity));
-            tearDown();
-        }
-        return aspectRatios;
-    }
-
-    private double getAspectRatio(Context context) {
+    private double getRealAspectRatio(Context context) {
         WindowManager windowManager =
                 (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
         Display display = windowManager.getDefaultDisplay();
         DisplayMetrics metrics = new DisplayMetrics();
-        display.getMetrics(metrics);
+        display.getRealMetrics(metrics);
 
         int max = Math.max(metrics.widthPixels, metrics.heightPixels);
         int min = Math.min(metrics.widthPixels, metrics.heightPixels);
         return (double) max / min;
     }
-
-    private Activity startOrientationActivity(int orientation) {
-        Intent intent = new Intent();
-        intent.putExtra(OrientationActivity.EXTRA_ORIENTATION, orientation);
-        setActivityIntent(intent);
-        return getActivity();
-    }
 }
diff --git a/tests/tests/dpi/src/android/dpi/cts/ConfigurationTest.java b/tests/tests/dpi/src/android/dpi/cts/ConfigurationTest.java
index 937d8f8..6f26b6e 100644
--- a/tests/tests/dpi/src/android/dpi/cts/ConfigurationTest.java
+++ b/tests/tests/dpi/src/android/dpi/cts/ConfigurationTest.java
@@ -52,6 +52,7 @@
         allowedDensities.add(DisplayMetrics.DENSITY_TV);
         allowedDensities.add(DisplayMetrics.DENSITY_HIGH);
         allowedDensities.add(DisplayMetrics.DENSITY_XHIGH);
+        allowedDensities.add(DisplayMetrics.DENSITY_XXHIGH);
         assertTrue("DisplayMetrics#densityDpi must be one of the DisplayMetrics.DENSITY_* values: "
                 + allowedDensities, allowedDensities.contains(metrics.densityDpi));
 
diff --git a/tests/tests/holo/Android.mk b/tests/tests/holo/Android.mk
deleted file mode 100644
index d844116..0000000
--- a/tests/tests/holo/Android.mk
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright (C) 2011 The Android Open Source Project
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#      http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-LOCAL_PATH:= $(call my-dir)
-include $(CLEAR_VARS)
-
-# don't include this package in any target
-LOCAL_MODULE_TAGS := optional
-# and when built explicitly put it in the data partition
-LOCAL_MODULE_PATH := $(TARGET_OUT_DATA_APPS)
-
-LOCAL_JAVA_LIBRARIES := android.test.runner
-
-LOCAL_STATIC_JAVA_LIBRARIES := ctstestrunner
-
-LOCAL_SRC_FILES := $(call all-java-files-under, src)
-
-LOCAL_AAPT_FLAGS = -c land -c xx_YY -c cs -c 320dpi -c 240dpi -c 213dpi -c 160dpi -c 120dpi
-
-LOCAL_PACKAGE_NAME := CtsHoloTestCases
-
-LOCAL_MODULE_TAGS := tests
-
-LOCAL_SDK_VERSION := current
-
-include $(BUILD_CTS_PACKAGE)
diff --git a/tests/tests/holo/AndroidManifest.xml b/tests/tests/holo/AndroidManifest.xml
deleted file mode 100644
index 4a03ba3..0000000
--- a/tests/tests/holo/AndroidManifest.xml
+++ /dev/null
@@ -1,66 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-        package="com.android.cts.holo">
-
-    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
-    <uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
-
-    <application android:hardwareAccelerated="false">
-        <uses-library android:name="android.test.runner" />
-
-        <activity android:name="android.holo.cts.HoloTestUtilitiesActivity" 
-                android:label="@string/holo_test_utilities">
-            <intent-filter>
-                <action android:name="android.intent.action.MAIN" />
-                <category android:name="android.intent.category.LAUNCHER" />
-            </intent-filter>
-        </activity>
-        
-        <activity android:name="android.holo.cts.DisplayInfoActivity"
-                android:label="@string/display_info" />
-
-        <activity android:name="android.holo.cts.ThemePickerActivity" 
-                android:label="@string/pick_theme" />
-
-        <activity android:name="android.holo.cts.LayoutPickerActivity" 
-                android:label="@string/pick_layout" />
-
-        <activity android:name="android.holo.cts.ThemeTestActivity"
-                android:configChanges="keyboardHidden|orientation|screenSize|mcc|mnc"
-                android:screenOrientation="nosensor"
-                android:theme="@android:style/Theme.Translucent.NoTitleBar">
-            <intent-filter>
-                <action android:name="android.intent.action.MAIN" />
-                <category android:name="android.intent.category.DEFAULT" />
-            </intent-filter>
-        </activity>
-
-        <activity android:name="android.holo.cts.LayoutTestActivity"
-                android:configChanges="keyboardHidden|orientation|screenSize|mcc|mnc"
-                android:screenOrientation="nosensor" />
-
-        <activity android:name="android.holo.cts.BitmapDeletionActivity"
-                android:theme="@android:style/Theme.Translucent.NoTitleBar" />
-
-    </application>
-    
-    <instrumentation android:name="android.test.InstrumentationCtsTestRunner"
-            android:targetPackage="com.android.cts.holo"
-            android:label="CTS tests for the Holo theme" />
-
-</manifest>
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_button.png b/tests/tests/holo/res/drawable-hdpi/holo_button.png
deleted file mode 100644
index dfb178d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_button_pressed.png
deleted file mode 100644
index 0cff976..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_calendar_view.png
deleted file mode 100644
index aea9b8d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-hdpi/holo_calendar_view_feb.png
deleted file mode 100644
index 5093067..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_checkbox.png
deleted file mode 100644
index b9f61f6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_chronometer.png
deleted file mode 100644
index ebfd536..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_button.png
deleted file mode 100644
index dfb178d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_button_pressed.png
deleted file mode 100644
index 0cff976..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_calendar_view.png
deleted file mode 100644
index c199329..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index dea6b40..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_checkbox.png
deleted file mode 100644
index b9f61f6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_chronometer.png
deleted file mode 100644
index ebfd536..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index dfb178d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 0cff976..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index c199329..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index dea6b40..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index b9f61f6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index ebfd536..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index ce8f320..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 7490622..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 15d3401..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index c404638..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 3ab433c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 4dc4b05..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 2ca1852..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 84d8b8c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 87c629e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 1122d5e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index 2316e8a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 2c046e6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 1e7615a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index 9768ef9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index ae05198..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 1de6a9d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index 57a4cdb..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index 353b5d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index 7a986aa..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 4baaf15..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 9627984..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index dfb178d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 0cff976..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index aea9b8d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 5093067..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index b9f61f6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index ebfd536..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index dfb178d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 0cff976..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index aea9b8d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 5093067..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index b9f61f6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index ebfd536..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index ce8f320..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 7490622..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 15d3401..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index c404638..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 3ab433c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 4dc4b05..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 2ca1852..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 84d8b8c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 87c629e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 1122d5e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 2316e8a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 2c046e6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 1e7615a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 9768ef9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index ae05198..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 1de6a9d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 57a4cdb..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 353b5d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 7a986aa..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 4baaf15..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 9627984..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index ce8f320..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 7490622..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 15d3401..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index c404638..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 3ab433c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 4dc4b05..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 2ca1852..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 84d8b8c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 87c629e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 1122d5e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index 2316e8a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 2c046e6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 1e7615a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index 9768ef9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index ae05198..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 1de6a9d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 57a4cdb..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index 353b5d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 7a986aa..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 4baaf15..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 9627984..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_radio_button.png
deleted file mode 100644
index ce8f320..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index 7490622..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 15d3401..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index c404638..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index 3ab433c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index 4dc4b05..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index 2ca1852..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 84d8b8c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index 87c629e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 1122d5e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_searchview.png
deleted file mode 100644
index 2316e8a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_searchview_query.png
deleted file mode 100644
index 2c046e6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index 1e7615a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_spinner.png
deleted file mode 100644
index 9768ef9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_switch.png
deleted file mode 100644
index ae05198..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_switch_checked.png
deleted file mode 100644
index 1de6a9d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_tabhost.png
deleted file mode 100644
index 57a4cdb..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_textview.png
deleted file mode 100644
index 353b5d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_timepicker.png
deleted file mode 100644
index 7a986aa..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 4baaf15..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index 9627984..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index dfb178d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 0cff976..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index aea9b8d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 5093067..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index b9f61f6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index ebfd536..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index dfb178d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 0cff976..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 52959f1..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 6a0feb3..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index b9f61f6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index ebfd536..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index ce8f320..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 7490622..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 15d3401..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index c404638..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 3ab433c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 4dc4b05..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 2ca1852..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 84d8b8c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 87c629e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 1122d5e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 2316e8a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 2c046e6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 1e7615a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 9768ef9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index ae05198..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 1de6a9d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 57a4cdb..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 353b5d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 7a986aa..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 4baaf15..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 9627984..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index ce8f320..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 7490622..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 15d3401..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index c404638..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 3ab433c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index 4dc4b05..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 2ca1852..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 84d8b8c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 87c629e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 1122d5e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index 2316e8a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 2c046e6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 1e7615a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index 9768ef9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index ae05198..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 1de6a9d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 57a4cdb..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index 353b5d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 7a986aa..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 4baaf15..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 9627984..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_button.png
deleted file mode 100644
index 8b707dd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index 0a71e88..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index 0874ee5..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index 617dd44..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index 44458e9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index 799ca43..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index bb36633..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index 31a3d64..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index a1e92d1..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index 28629d7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index b7ed0fd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index eb69c2f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index 8a38f74..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ad6086..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index 1dd698f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index 1a64fe9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_searchview.png
deleted file mode 100644
index 4fa916a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index 4646c79..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index 5674ee5..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_spinner.png
deleted file mode 100644
index f25be08..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_switch.png
deleted file mode 100644
index 2b945e8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index 7dc944d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index 4b75bbb..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_textview.png
deleted file mode 100644
index 78c9c3d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index e07810a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index c8a72b7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index 3ce3612..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_button.png
deleted file mode 100644
index 8b707dd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_button_pressed.png
deleted file mode 100644
index 0a71e88..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_light_calendar_view.png
deleted file mode 100644
index df79dc4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-hdpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index c4365ae..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_light_checkbox.png
deleted file mode 100644
index 44458e9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_light_chronometer.png
deleted file mode 100644
index 799ca43..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_light_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_light_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index 8b707dd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index 0a71e88..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index df79dc4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index c4365ae..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index 44458e9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index 799ca43..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index bb36633..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index 31a3d64..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index a1e92d1..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index 28629d7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index b7ed0fd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index eb69c2f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index 8a38f74..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ad6086..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index 1dd698f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 1a64fe9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index 4fa916a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index 4646c79..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index 5674ee5..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index f25be08..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index 2b945e8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index 7dc944d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index 4b75bbb..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index 78c9c3d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index e07810a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index c8a72b7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index 3ce3612..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_button.png
deleted file mode 100644
index 8b707dd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index 0a71e88..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index 3935ca1..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index 5a11a6c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index 44458e9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index 799ca43..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index 8b707dd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 0a71e88..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 3935ca1..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 5a11a6c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index 44458e9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index 799ca43..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index bb36633..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 31a3d64..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index a1e92d1..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 28629d7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index b7ed0fd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index eb69c2f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 8a38f74..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ad6086..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 1dd698f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 1a64fe9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index 4fa916a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 4646c79..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 5674ee5..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index f25be08..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index 2b945e8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 7dc944d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index 4b75bbb..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index 78c9c3d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index e07810a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index c8a72b7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 3ce3612..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index 8b707dd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 0a71e88..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index df79dc4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index c4365ae..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 44458e9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 799ca43..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 8b707dd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 0a71e88..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index df79dc4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index c4365ae..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 44458e9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 799ca43..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index bb36633..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 31a3d64..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index a1e92d1..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 28629d7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index b7ed0fd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index eb69c2f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 8a38f74..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ad6086..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 1dd698f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 1a64fe9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 4fa916a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 4646c79..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 5674ee5..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index f25be08..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 2b945e8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 7dc944d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 4b75bbb..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 78c9c3d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index e07810a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index c8a72b7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 3ce3612..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index bb36633..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 31a3d64..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index a1e92d1..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 28629d7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index b7ed0fd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index eb69c2f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 8a38f74..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ad6086..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 1dd698f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 1a64fe9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index 4fa916a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 4646c79..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 5674ee5..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index f25be08..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index 2b945e8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 7dc944d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 4b75bbb..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index 78c9c3d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index e07810a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index c8a72b7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 3ce3612..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index bb36633..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index 31a3d64..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index a1e92d1..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index 28629d7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index b7ed0fd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index eb69c2f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index 8a38f74..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ad6086..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index 1dd698f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 1a64fe9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_searchview.png
deleted file mode 100644
index 4fa916a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index 4646c79..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index 5674ee5..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_spinner.png
deleted file mode 100644
index f25be08..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_switch.png
deleted file mode 100644
index 2b945e8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index 7dc944d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index 4b75bbb..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_textview.png
deleted file mode 100644
index 78c9c3d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index e07810a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index c8a72b7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index 3ce3612..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index 8b707dd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 0a71e88..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index df79dc4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index c4365ae..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 44458e9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 799ca43..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 8b707dd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 0a71e88..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 0874ee5..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 617dd44..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 44458e9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 799ca43..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index bb36633..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 31a3d64..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index a1e92d1..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 28629d7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index b7ed0fd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index eb69c2f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 8a38f74..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ad6086..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 1dd698f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 1a64fe9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 4fa916a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 4646c79..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 5674ee5..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index f25be08..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 2b945e8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 7dc944d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 4b75bbb..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 78c9c3d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index e07810a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index c8a72b7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 3ce3612..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index bb36633..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 31a3d64..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index a1e92d1..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 28629d7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index b7ed0fd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index eb69c2f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 8a38f74..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ad6086..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 1dd698f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 1a64fe9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index 4fa916a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 4646c79..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 5674ee5..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index f25be08..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index 2b945e8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 7dc944d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 4b75bbb..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index 78c9c3d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index e07810a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index c8a72b7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 3ce3612..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_light_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_button.png
deleted file mode 100644
index 8b707dd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index 0a71e88..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index 0874ee5..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 617dd44..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index 44458e9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index 799ca43..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index 8b707dd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 0a71e88..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 0874ee5..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 617dd44..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 44458e9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 799ca43..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index bb36633..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 31a3d64..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index a1e92d1..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 28629d7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index b7ed0fd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index eb69c2f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 8a38f74..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ad6086..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 1dd698f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 1a64fe9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 4fa916a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 4646c79..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 5674ee5..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index f25be08..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 2b945e8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 7dc944d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 4b75bbb..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 78c9c3d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index e07810a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index c8a72b7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 3ce3612..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index bb36633..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index 31a3d64..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index a1e92d1..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 28629d7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index b7ed0fd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index eb69c2f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 8a38f74..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ad6086..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index 1dd698f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 1a64fe9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index 4fa916a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index 4646c79..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 5674ee5..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index f25be08..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index 2b945e8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index 7dc944d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index 4b75bbb..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index 78c9c3d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index e07810a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index c8a72b7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 3ce3612..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_button.png
deleted file mode 100644
index 8b707dd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index 0a71e88..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index 0874ee5..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index 617dd44..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_checkbox.png
deleted file mode 100644
index 44458e9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_chronometer.png
deleted file mode 100644
index 799ca43..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_radio_button.png
deleted file mode 100644
index bb36633..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index 31a3d64..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index a1e92d1..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index 28629d7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index b7ed0fd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index eb69c2f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index 8a38f74..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ad6086..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index 1dd698f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 1a64fe9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_searchview.png
deleted file mode 100644
index 4fa916a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index 4646c79..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index 5674ee5..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_spinner.png
deleted file mode 100644
index f25be08..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_switch.png
deleted file mode 100644
index 2b945e8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index 7dc944d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_tabhost.png
deleted file mode 100644
index 4b75bbb..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_textview.png
deleted file mode 100644
index 78c9c3d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_timepicker.png
deleted file mode 100644
index e07810a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index c8a72b7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index 3ce3612..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_radio_button.png
deleted file mode 100644
index bb36633..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_radio_button_checked.png
deleted file mode 100644
index 31a3d64..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index a1e92d1..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index 28629d7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_0.png
deleted file mode 100644
index b7ed0fd..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index eb69c2f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index 8a38f74..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ad6086..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_5.png
deleted file mode 100644
index 1dd698f..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index 1a64fe9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_searchview.png
deleted file mode 100644
index 4fa916a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_light_searchview_query.png
deleted file mode 100644
index 4646c79..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index 5674ee5..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_light_spinner.png
deleted file mode 100644
index f25be08..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_light_switch.png
deleted file mode 100644
index 2b945e8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_switch_checked.png
deleted file mode 100644
index 7dc944d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_light_tabhost.png
deleted file mode 100644
index 4b75bbb..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_light_textview.png
deleted file mode 100644
index 78c9c3d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_light_timepicker.png
deleted file mode 100644
index e07810a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_light_toggle_button.png
deleted file mode 100644
index c8a72b7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index 3ce3612..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_button.png
deleted file mode 100644
index dfb178d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index 0cff976..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index 52959f1..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 6a0feb3..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index b9f61f6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index ebfd536..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index dfb178d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 0cff976..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 52959f1..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 6a0feb3..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index b9f61f6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index ebfd536..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index ce8f320..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 7490622..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 15d3401..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index c404638..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 3ab433c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index 4dc4b05..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 2ca1852..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 84d8b8c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 87c629e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 1122d5e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 2316e8a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 2c046e6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 1e7615a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 9768ef9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index ae05198..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 1de6a9d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 57a4cdb..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 353b5d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 7a986aa..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 4baaf15..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 9627984..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index ce8f320..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index 7490622..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 15d3401..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index c404638..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index 3ab433c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 4dc4b05..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 2ca1852..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 84d8b8c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index 87c629e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 1122d5e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_searchview.png
deleted file mode 100644
index 2316e8a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index 2c046e6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 1e7615a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_spinner.png
deleted file mode 100644
index 9768ef9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_switch.png
deleted file mode 100644
index ae05198..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index 1de6a9d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index 57a4cdb..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_textview.png
deleted file mode 100644
index 353b5d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index 7a986aa..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 4baaf15..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 9627984..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_button.png
deleted file mode 100644
index dfb178d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_button_pressed.png
deleted file mode 100644
index 0cff976..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_calendar_view.png
deleted file mode 100644
index 52959f1..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index 6a0feb3..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_checkbox.png
deleted file mode 100644
index b9f61f6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_chronometer.png
deleted file mode 100644
index ebfd536..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_radio_button.png
deleted file mode 100644
index ce8f320..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index 7490622..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index 15d3401..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index c404638..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index 3ab433c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index 4dc4b05..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index 2ca1852..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 84d8b8c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index 87c629e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 1122d5e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_searchview.png
deleted file mode 100644
index 2316e8a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_searchview_query.png
deleted file mode 100644
index 2c046e6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index 1e7615a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_spinner.png
deleted file mode 100644
index 9768ef9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_switch.png
deleted file mode 100644
index ae05198..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_switch_checked.png
deleted file mode 100644
index 1de6a9d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_tabhost.png
deleted file mode 100644
index 57a4cdb..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_textview.png
deleted file mode 100644
index 353b5d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_timepicker.png
deleted file mode 100644
index 7a986aa..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_toggle_button.png
deleted file mode 100644
index 4baaf15..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index 9627984..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_radio_button.png
deleted file mode 100644
index ce8f320..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_radio_button_checked.png
deleted file mode 100644
index 7490622..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index 15d3401..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_radiogroup_vertical.png
deleted file mode 100644
index c404638..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_0.png
deleted file mode 100644
index 3ab433c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index 4dc4b05..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_2point5.png
deleted file mode 100644
index 2ca1852..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index 84d8b8c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_5.png
deleted file mode 100644
index 87c629e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index 1122d5e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_searchview.png
deleted file mode 100644
index 2316e8a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_searchview_query.png
deleted file mode 100644
index 2c046e6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_searchview_query_hint.png
deleted file mode 100644
index 1e7615a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_spinner.png
deleted file mode 100644
index 9768ef9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_switch.png
deleted file mode 100644
index ae05198..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_switch_checked.png
deleted file mode 100644
index 1de6a9d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_tabhost.png
deleted file mode 100644
index 57a4cdb..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_textview.png
deleted file mode 100644
index 353b5d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_timepicker.png
deleted file mode 100644
index 7a986aa..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_toggle_button.png
deleted file mode 100644
index 4baaf15..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_toggle_button_checked.png
deleted file mode 100644
index 9627984..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_button.png
deleted file mode 100644
index dfb178d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index 0cff976..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index aea9b8d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index 5093067..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index b9f61f6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index ebfd536..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index dfb178d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index 0cff976..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index 52959f1..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index 6a0feb3..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index b9f61f6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index ebfd536..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index ce8f320..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index 7490622..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index 15d3401..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index c404638..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index 3ab433c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index 4dc4b05..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index 2ca1852..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 84d8b8c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index 87c629e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index 1122d5e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index 2316e8a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index 2c046e6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index 1e7615a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index 9768ef9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index ae05198..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index 1de6a9d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index 57a4cdb..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index 353b5d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index 7a986aa..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 4baaf15..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index 9627984..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index ce8f320..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index 7490622..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index 15d3401..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index c404638..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index 3ab433c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index 4dc4b05..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index 2ca1852..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index 84d8b8c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index 87c629e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index 1122d5e..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_searchview.png
deleted file mode 100644
index 2316e8a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index 2c046e6..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index 1e7615a..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_spinner.png
deleted file mode 100644
index 9768ef9..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_switch.png
deleted file mode 100644
index ae05198..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index 1de6a9d..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index 57a4cdb..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_textview.png
deleted file mode 100644
index 353b5d2..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index 7a986aa..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 4baaf15..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index 9627984..0000000
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/display_info.png b/tests/tests/holo/res/drawable-land-hdpi/display_info.png
deleted file mode 100644
index a665018..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index da19499..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index 292923b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index da19499..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 292923b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index da19499..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 292923b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_searchview.png
deleted file mode 100644
index da19499..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_tabhost.png
deleted file mode 100644
index 292923b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index da19499..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 292923b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index da19499..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 292923b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_searchview.png
deleted file mode 100644
index dc730b4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index 0b58f46..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index dc730b4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index 0b58f46..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index dc730b4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index 0b58f46..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index dc730b4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 0b58f46..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index dc730b4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 0b58f46..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_searchview.png
deleted file mode 100644
index dc730b4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index 0b58f46..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index dc730b4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 0b58f46..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index dc730b4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 0b58f46..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index dc730b4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 0b58f46..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index dc730b4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index 0b58f46..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_searchview.png
deleted file mode 100644
index dc730b4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_tabhost.png
deleted file mode 100644
index 0b58f46..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_searchview.png
deleted file mode 100644
index dc730b4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_tabhost.png
deleted file mode 100644
index 0b58f46..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index da19499..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 292923b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_searchview.png
deleted file mode 100644
index da19499..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index 292923b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_searchview.png
deleted file mode 100644
index da19499..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_tabhost.png
deleted file mode 100644
index 292923b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_searchview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_searchview.png
deleted file mode 100644
index da19499..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_tabhost.png
deleted file mode 100644
index 292923b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index da19499..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index 292923b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_searchview.png
deleted file mode 100644
index da19499..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index 292923b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/display_info.png b/tests/tests/holo/res/drawable-land-ldpi/display_info.png
deleted file mode 100644
index 64c8f3a..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index 8d86351..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index 25edc53..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 8d86351..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 25edc53..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index 8d86351..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 25edc53..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_searchview.png
deleted file mode 100644
index 8d86351..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_tabhost.png
deleted file mode 100644
index 25edc53..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 8d86351..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 25edc53..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index 8d86351..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 25edc53..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_searchview.png
deleted file mode 100644
index 3364ae1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index 57c777a..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index 3364ae1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index 57c777a..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index 3364ae1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index 57c777a..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 3364ae1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 57c777a..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index 3364ae1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 57c777a..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_searchview.png
deleted file mode 100644
index 3364ae1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index 57c777a..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 3364ae1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 57c777a..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index 3364ae1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 57c777a..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 3364ae1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 57c777a..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index 3364ae1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index 57c777a..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_searchview.png
deleted file mode 100644
index 3364ae1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_tabhost.png
deleted file mode 100644
index 57c777a..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_searchview.png
deleted file mode 100644
index 3364ae1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_tabhost.png
deleted file mode 100644
index 57c777a..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 8d86351..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 25edc53..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_searchview.png
deleted file mode 100644
index 8d86351..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index 25edc53..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_searchview.png
deleted file mode 100644
index 8d86351..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_tabhost.png
deleted file mode 100644
index 25edc53..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_searchview.png
deleted file mode 100644
index 8d86351..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_tabhost.png
deleted file mode 100644
index 25edc53..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index 8d86351..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index 25edc53..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_searchview.png
deleted file mode 100644
index 8d86351..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index 25edc53..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/display_info.png b/tests/tests/holo/res/drawable-land-mdpi/display_info.png
deleted file mode 100644
index f3e6765..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index a4ed4e6..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index 1a08f0a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index a4ed4e6..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 1a08f0a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index a4ed4e6..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 1a08f0a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_searchview.png
deleted file mode 100644
index a4ed4e6..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_tabhost.png
deleted file mode 100644
index 1a08f0a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index a4ed4e6..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 1a08f0a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index a4ed4e6..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 1a08f0a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_searchview.png
deleted file mode 100644
index 133fa96..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index ef16b1b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index 133fa96..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index ef16b1b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index 133fa96..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index ef16b1b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 133fa96..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index ef16b1b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index 133fa96..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index ef16b1b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_searchview.png
deleted file mode 100644
index 133fa96..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index ef16b1b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 133fa96..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index ef16b1b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index 133fa96..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index ef16b1b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 133fa96..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index ef16b1b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index 133fa96..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index ef16b1b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_searchview.png
deleted file mode 100644
index 133fa96..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_tabhost.png
deleted file mode 100644
index ef16b1b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_searchview.png
deleted file mode 100644
index 133fa96..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_tabhost.png
deleted file mode 100644
index ef16b1b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index a4ed4e6..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 1a08f0a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_searchview.png
deleted file mode 100644
index a4ed4e6..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index 1a08f0a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_searchview.png
deleted file mode 100644
index a4ed4e6..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_tabhost.png
deleted file mode 100644
index 1a08f0a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_searchview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_searchview.png
deleted file mode 100644
index a4ed4e6..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-land-mdpi/holo_tabhost.png
deleted file mode 100644
index 1a08f0a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index a4ed4e6..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index 1a08f0a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_searchview.png
deleted file mode 100644
index a4ed4e6..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index 1a08f0a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/display_info.png b/tests/tests/holo/res/drawable-land-tvdpi/display_info.png
deleted file mode 100644
index 99de970..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index 7320b98..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index 7170d12..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 7320b98..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 7170d12..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index 7320b98..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 7170d12..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_searchview.png
deleted file mode 100644
index 7320b98..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_tabhost.png
deleted file mode 100644
index 7170d12..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 7320b98..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 7170d12..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index 7320b98..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 7170d12..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_searchview.png
deleted file mode 100644
index 9ff0a17..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index d34a793..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index 9ff0a17..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index d34a793..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index 9ff0a17..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index d34a793..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 9ff0a17..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index d34a793..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index 9ff0a17..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index d34a793..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_searchview.png
deleted file mode 100644
index 9ff0a17..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index d34a793..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 9ff0a17..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index d34a793..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index 9ff0a17..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index d34a793..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 9ff0a17..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index d34a793..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index 9ff0a17..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index d34a793..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_searchview.png
deleted file mode 100644
index 9ff0a17..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_tabhost.png
deleted file mode 100644
index d34a793..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_searchview.png
deleted file mode 100644
index 9ff0a17..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_tabhost.png
deleted file mode 100644
index d34a793..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 7320b98..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 7170d12..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_searchview.png
deleted file mode 100644
index 7320b98..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index 7170d12..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_searchview.png
deleted file mode 100644
index 7320b98..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_tabhost.png
deleted file mode 100644
index 7170d12..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_searchview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_searchview.png
deleted file mode 100644
index 7320b98..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_tabhost.png
deleted file mode 100644
index 7170d12..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index 7320b98..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index 7170d12..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_searchview.png
deleted file mode 100644
index 7320b98..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index 7170d12..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/display_info.png b/tests/tests/holo/res/drawable-land-xhdpi/display_info.png
deleted file mode 100644
index 4c0c2b4..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index de97e9f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index 1a32ad2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index de97e9f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 1a32ad2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index de97e9f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 1a32ad2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_searchview.png
deleted file mode 100644
index de97e9f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_tabhost.png
deleted file mode 100644
index 1a32ad2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index de97e9f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 1a32ad2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index de97e9f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 1a32ad2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_searchview.png
deleted file mode 100644
index 1997d62..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index d751ac0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index 1997d62..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index d751ac0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index 1997d62..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index d751ac0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 1997d62..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index d751ac0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index 1997d62..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index d751ac0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_searchview.png
deleted file mode 100644
index 1997d62..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index d751ac0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 1997d62..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index d751ac0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index 1997d62..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index d751ac0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 1997d62..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index d751ac0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index 1997d62..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index d751ac0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_searchview.png
deleted file mode 100644
index 1997d62..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_tabhost.png
deleted file mode 100644
index d751ac0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_searchview.png
deleted file mode 100644
index 1997d62..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_tabhost.png
deleted file mode 100644
index d751ac0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index de97e9f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 1a32ad2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_searchview.png
deleted file mode 100644
index de97e9f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index 1a32ad2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_searchview.png
deleted file mode 100644
index de97e9f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_tabhost.png
deleted file mode 100644
index 1a32ad2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_searchview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_searchview.png
deleted file mode 100644
index de97e9f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_tabhost.png
deleted file mode 100644
index 1a32ad2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index de97e9f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index 1a32ad2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_searchview.png
deleted file mode 100644
index de97e9f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index 1a32ad2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_button.png b/tests/tests/holo/res/drawable-ldpi/holo_button.png
deleted file mode 100644
index d7b7a8b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_button_pressed.png
deleted file mode 100644
index aa3dfdd..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_calendar_view.png
deleted file mode 100644
index 7149aeb..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_calendar_view_feb.png
deleted file mode 100644
index e77a2fb..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_checkbox.png
deleted file mode 100644
index b6c52ff..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_chronometer.png
deleted file mode 100644
index b4831bc..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_button.png
deleted file mode 100644
index d7b7a8b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_button_pressed.png
deleted file mode 100644
index aa3dfdd..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_calendar_view.png
deleted file mode 100644
index 867a1c7..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index 9ea8c1d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_checkbox.png
deleted file mode 100644
index b6c52ff..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_chronometer.png
deleted file mode 100644
index b4831bc..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index d7b7a8b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index aa3dfdd..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 867a1c7..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 9ea8c1d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index b6c52ff..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index b4831bc..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index e496198..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 10d03ea..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 5009f1a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index b47b6f6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 88279b8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index d4b841d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 3e80e24..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index b0c4cf2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 13eee57..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index ccd4d30..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index ca76a70..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index df23c85..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 77a55af..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index 2bda0c9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index 415c08c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 24ed111..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index d341ccb..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index b1672b1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index 3044660..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 0bce537..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 5520da1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index d7b7a8b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index aa3dfdd..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 7149aeb..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index e77a2fb..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index b6c52ff..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index b4831bc..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index d7b7a8b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index aa3dfdd..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 7149aeb..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index e77a2fb..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index b6c52ff..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index b4831bc..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index e496198..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 10d03ea..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 5009f1a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index b47b6f6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 88279b8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index d4b841d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 3e80e24..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index b0c4cf2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 13eee57..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index ccd4d30..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index ca76a70..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index df23c85..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 77a55af..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 2bda0c9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 415c08c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 24ed111..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index d341ccb..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index b1672b1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 3044660..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 0bce537..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 5520da1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index e496198..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 10d03ea..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 5009f1a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index b47b6f6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 88279b8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index d4b841d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 3e80e24..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b0c4cf2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 13eee57..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index ccd4d30..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index ca76a70..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index df23c85..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 77a55af..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index 2bda0c9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index 415c08c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 24ed111..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index d341ccb..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index b1672b1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 3044660..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 0bce537..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 5520da1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_radio_button.png
deleted file mode 100644
index e496198..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index 10d03ea..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 5009f1a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index b47b6f6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index 88279b8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index d4b841d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index 3e80e24..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index b0c4cf2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index 13eee57..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index ccd4d30..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_searchview.png
deleted file mode 100644
index ca76a70..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_searchview_query.png
deleted file mode 100644
index df23c85..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index 77a55af..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_spinner.png
deleted file mode 100644
index 2bda0c9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_switch.png
deleted file mode 100644
index 415c08c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_switch_checked.png
deleted file mode 100644
index 24ed111..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_tabhost.png
deleted file mode 100644
index d341ccb..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_textview.png
deleted file mode 100644
index b1672b1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_timepicker.png
deleted file mode 100644
index 3044660..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 0bce537..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index 5520da1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index d7b7a8b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index aa3dfdd..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 7149aeb..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index e77a2fb..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index b6c52ff..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index b4831bc..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index d7b7a8b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index aa3dfdd..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 6d5b173..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index e9d5de9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index b6c52ff..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index b4831bc..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index e496198..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 10d03ea..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 5009f1a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index b47b6f6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 88279b8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index d4b841d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 3e80e24..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b0c4cf2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 13eee57..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index ccd4d30..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index ca76a70..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index df23c85..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 77a55af..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 2bda0c9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 415c08c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 24ed111..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index d341ccb..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index b1672b1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 3044660..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 0bce537..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 5520da1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index e496198..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 10d03ea..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 5009f1a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index b47b6f6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 88279b8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index d4b841d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 3e80e24..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index b0c4cf2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 13eee57..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index ccd4d30..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index ca76a70..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index df23c85..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 77a55af..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index 2bda0c9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index 415c08c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 24ed111..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index d341ccb..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index b1672b1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 3044660..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 0bce537..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 5520da1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_edittext.png b/tests/tests/holo/res/drawable-ldpi/holo_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_button.png
deleted file mode 100644
index 7534511..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index 6dc5b0b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index c8b76c8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index ef2b2d6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index 1089910..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index 6bb85d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index f4235b3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index a01890f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index 03c3e01..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index 0afe7b2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index 924047a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index 9444719..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index 2f1a8a0..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index 47c7851..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index e35abf9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index a9d7fd4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index 23afb05..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index 1747219..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_searchview.png
deleted file mode 100644
index e5feeb8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index d56c96b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index 8314ad3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_spinner.png
deleted file mode 100644
index 38a8c16..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_switch.png
deleted file mode 100644
index 7b68f87..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index 72f4665..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index 958ce0f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_textview.png
deleted file mode 100644
index bae6b0e..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index 73daef6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index eda073d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index c3202d4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_button.png
deleted file mode 100644
index 7534511..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_button_pressed.png
deleted file mode 100644
index 6dc5b0b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_light_calendar_view.png
deleted file mode 100644
index 20f587c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index c85dad2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_light_checkbox.png
deleted file mode 100644
index 1089910..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_light_chronometer.png
deleted file mode 100644
index 6bb85d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_light_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_light_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index 7534511..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index 6dc5b0b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index 20f587c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index c85dad2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index 1089910..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index 6bb85d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index f4235b3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index a01890f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index 03c3e01..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index 0afe7b2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 924047a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index 9444719..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index 2f1a8a0..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 47c7851..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index e35abf9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index a9d7fd4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index 23afb05..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 1747219..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index e5feeb8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index d56c96b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index 8314ad3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index 38a8c16..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index 7b68f87..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index 72f4665..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index 958ce0f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index bae6b0e..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index 73daef6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index eda073d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index c3202d4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_button.png
deleted file mode 100644
index 7534511..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index 6dc5b0b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index 3d30ded..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index 6de8708..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index 1089910..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index 6bb85d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index 7534511..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 6dc5b0b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 3d30ded..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 6de8708..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index 1089910..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index 6bb85d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index f4235b3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index a01890f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index 03c3e01..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 0afe7b2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 924047a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 9444719..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 2f1a8a0..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 47c7851..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index e35abf9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index a9d7fd4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 23afb05..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 1747219..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index e5feeb8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index d56c96b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 8314ad3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index 38a8c16..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index 7b68f87..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 72f4665..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index 958ce0f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index bae6b0e..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index 73daef6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index eda073d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index c3202d4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index 7534511..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 6dc5b0b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 20f587c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index c85dad2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 1089910..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 6bb85d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 7534511..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 6dc5b0b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 20f587c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index c85dad2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 1089910..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 6bb85d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index f4235b3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index a01890f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index 03c3e01..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 0afe7b2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 924047a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 9444719..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 2f1a8a0..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 47c7851..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index e35abf9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index a9d7fd4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 23afb05..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 1747219..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index e5feeb8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index d56c96b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 8314ad3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 38a8c16..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 7b68f87..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 72f4665..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 958ce0f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index bae6b0e..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 73daef6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index eda073d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index c3202d4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index f4235b3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index a01890f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index 03c3e01..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 0afe7b2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 924047a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 9444719..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 2f1a8a0..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 47c7851..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index e35abf9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index a9d7fd4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 23afb05..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 1747219..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index e5feeb8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index d56c96b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 8314ad3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index 38a8c16..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index 7b68f87..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 72f4665..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 958ce0f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index bae6b0e..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 73daef6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index eda073d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index c3202d4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index f4235b3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index a01890f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index 03c3e01..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index 0afe7b2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 924047a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index 9444719..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index 2f1a8a0..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index 47c7851..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index e35abf9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index a9d7fd4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index 23afb05..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 1747219..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_searchview.png
deleted file mode 100644
index e5feeb8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index d56c96b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index 8314ad3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_spinner.png
deleted file mode 100644
index 38a8c16..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_switch.png
deleted file mode 100644
index 7b68f87..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index 72f4665..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index 958ce0f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_textview.png
deleted file mode 100644
index bae6b0e..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index 73daef6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index eda073d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index c3202d4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index 7534511..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 6dc5b0b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 20f587c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index c85dad2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 1089910..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 6bb85d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 7534511..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 6dc5b0b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index c8b76c8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index ef2b2d6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 1089910..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 6bb85d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index f4235b3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index a01890f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index 03c3e01..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 0afe7b2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 924047a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 9444719..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 2f1a8a0..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 47c7851..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index e35abf9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index a9d7fd4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 23afb05..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 1747219..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index e5feeb8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index d56c96b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 8314ad3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 38a8c16..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 7b68f87..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 72f4665..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 958ce0f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index bae6b0e..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 73daef6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index eda073d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index c3202d4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index f4235b3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index a01890f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index 03c3e01..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 0afe7b2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 924047a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 9444719..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 2f1a8a0..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index 47c7851..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index e35abf9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index a9d7fd4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 23afb05..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 1747219..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index e5feeb8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index d56c96b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 8314ad3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index 38a8c16..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index 7b68f87..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 72f4665..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 958ce0f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index bae6b0e..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 73daef6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index eda073d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index c3202d4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-ldpi/holo_light_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_button.png
deleted file mode 100644
index 7534511..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index 6dc5b0b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index c8b76c8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index ef2b2d6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index 1089910..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index 6bb85d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index 7534511..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 6dc5b0b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index c8b76c8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index ef2b2d6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 1089910..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 6bb85d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index f4235b3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index a01890f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index 03c3e01..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 0afe7b2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 924047a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 9444719..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 2f1a8a0..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index 47c7851..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index e35abf9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index a9d7fd4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 23afb05..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 1747219..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index e5feeb8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index d56c96b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 8314ad3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 38a8c16..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 7b68f87..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 72f4665..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 958ce0f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index bae6b0e..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 73daef6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index eda073d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index c3202d4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index f4235b3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index a01890f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index 03c3e01..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index 0afe7b2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 924047a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 9444719..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index 2f1a8a0..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 47c7851..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index e35abf9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index a9d7fd4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index 23afb05..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 1747219..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index e5feeb8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index d56c96b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 8314ad3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index 38a8c16..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index 7b68f87..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index 72f4665..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index 958ce0f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index bae6b0e..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index 73daef6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index eda073d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index c3202d4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_button.png
deleted file mode 100644
index 7534511..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index 6dc5b0b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index c8b76c8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index ef2b2d6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_checkbox.png
deleted file mode 100644
index 1089910..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_chronometer.png
deleted file mode 100644
index 6bb85d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index f4235b3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index a01890f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radio_button.png
deleted file mode 100644
index 03c3e01..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index 0afe7b2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index 924047a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index 9444719..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index 2f1a8a0..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index 47c7851..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index e35abf9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index a9d7fd4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index 23afb05..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 1747219..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_searchview.png
deleted file mode 100644
index e5feeb8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index d56c96b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index 8314ad3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_spinner.png
deleted file mode 100644
index 38a8c16..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_switch.png
deleted file mode 100644
index 7b68f87..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index 72f4665..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_tabhost.png
deleted file mode 100644
index 958ce0f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_textview.png
deleted file mode 100644
index bae6b0e..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_timepicker.png
deleted file mode 100644
index 73daef6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index eda073d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index c3202d4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index f4235b3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index a01890f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_radio_button.png
deleted file mode 100644
index 03c3e01..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_radio_button_checked.png
deleted file mode 100644
index 0afe7b2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index 924047a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index 9444719..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_ratingbar_0.png
deleted file mode 100644
index 2f1a8a0..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index 47c7851..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-ldpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index e35abf9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index a9d7fd4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-ldpi/holo_light_ratingbar_5.png
deleted file mode 100644
index 23afb05..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index 1747219..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_searchview.png
deleted file mode 100644
index e5feeb8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_light_searchview_query.png
deleted file mode 100644
index d56c96b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index 8314ad3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_light_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_light_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_light_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_light_spinner.png
deleted file mode 100644
index 38a8c16..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_light_switch.png
deleted file mode 100644
index 7b68f87..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_switch_checked.png
deleted file mode 100644
index 72f4665..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_light_tabhost.png
deleted file mode 100644
index 958ce0f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_light_textview.png
deleted file mode 100644
index bae6b0e..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_light_timepicker.png
deleted file mode 100644
index 73daef6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_light_toggle_button.png
deleted file mode 100644
index eda073d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index c3202d4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_button.png
deleted file mode 100644
index d7b7a8b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index aa3dfdd..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index 6d5b173..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index e9d5de9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index b6c52ff..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index b4831bc..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index d7b7a8b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index aa3dfdd..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 6d5b173..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index e9d5de9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index b6c52ff..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index b4831bc..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index e496198..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 10d03ea..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 5009f1a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index b47b6f6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 88279b8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index d4b841d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 3e80e24..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index b0c4cf2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 13eee57..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index ccd4d30..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index ca76a70..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index df23c85..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 77a55af..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 2bda0c9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 415c08c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 24ed111..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index d341ccb..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index b1672b1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 3044660..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 0bce537..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 5520da1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index e496198..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index 10d03ea..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 5009f1a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index b47b6f6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index 88279b8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index d4b841d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 3e80e24..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b0c4cf2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index 13eee57..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index ccd4d30..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_searchview.png
deleted file mode 100644
index ca76a70..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index df23c85..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 77a55af..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_spinner.png
deleted file mode 100644
index 2bda0c9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_switch.png
deleted file mode 100644
index 415c08c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index 24ed111..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index d341ccb..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_textview.png
deleted file mode 100644
index b1672b1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index 3044660..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 0bce537..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 5520da1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_button.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_button.png
deleted file mode 100644
index d7b7a8b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_button_pressed.png
deleted file mode 100644
index aa3dfdd..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_calendar_view.png
deleted file mode 100644
index 6d5b173..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index e9d5de9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_checkbox.png
deleted file mode 100644
index b6c52ff..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_chronometer.png
deleted file mode 100644
index b4831bc..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_radio_button.png
deleted file mode 100644
index e496198..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index 10d03ea..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index 5009f1a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index b47b6f6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index 88279b8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index d4b841d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index 3e80e24..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index b0c4cf2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index 13eee57..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index ccd4d30..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_searchview.png
deleted file mode 100644
index ca76a70..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_searchview_query.png
deleted file mode 100644
index df23c85..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index 77a55af..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_spinner.png
deleted file mode 100644
index 2bda0c9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_switch.png
deleted file mode 100644
index 415c08c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_switch_checked.png
deleted file mode 100644
index 24ed111..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_tabhost.png
deleted file mode 100644
index d341ccb..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_textview.png
deleted file mode 100644
index b1672b1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_timepicker.png
deleted file mode 100644
index 3044660..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_toggle_button.png
deleted file mode 100644
index 0bce537..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index 5520da1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_progressbar.png b/tests/tests/holo/res/drawable-ldpi/holo_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-ldpi/holo_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-ldpi/holo_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_radio_button.png
deleted file mode 100644
index e496198..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_radio_button_checked.png
deleted file mode 100644
index 10d03ea..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index 5009f1a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_radiogroup_vertical.png
deleted file mode 100644
index b47b6f6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_ratingbar_0.png
deleted file mode 100644
index 88279b8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index d4b841d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-ldpi/holo_ratingbar_2point5.png
deleted file mode 100644
index 3e80e24..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index b0c4cf2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-ldpi/holo_ratingbar_5.png
deleted file mode 100644
index 13eee57..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index ccd4d30..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_searchview.png b/tests/tests/holo/res/drawable-ldpi/holo_searchview.png
deleted file mode 100644
index ca76a70..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_searchview_query.png
deleted file mode 100644
index df23c85..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_searchview_query_hint.png
deleted file mode 100644
index 77a55af..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_spinner.png
deleted file mode 100644
index 2bda0c9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_switch.png
deleted file mode 100644
index 415c08c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_switch_checked.png
deleted file mode 100644
index 24ed111..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_tabhost.png
deleted file mode 100644
index d341ccb..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_textview.png
deleted file mode 100644
index b1672b1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_timepicker.png
deleted file mode 100644
index 3044660..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_toggle_button.png
deleted file mode 100644
index 0bce537..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_toggle_button_checked.png
deleted file mode 100644
index 5520da1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_button.png
deleted file mode 100644
index d7b7a8b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index aa3dfdd..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index 7149aeb..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index e77a2fb..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index b6c52ff..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index b4831bc..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index d7b7a8b..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index aa3dfdd..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index 6d5b173..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index e9d5de9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index b6c52ff..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index b4831bc..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index e496198..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index 10d03ea..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index 5009f1a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index b47b6f6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index 88279b8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index d4b841d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index 3e80e24..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b0c4cf2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index 13eee57..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index ccd4d30..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index ca76a70..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index df23c85..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index 77a55af..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index 2bda0c9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index 415c08c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index 24ed111..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index d341ccb..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index b1672b1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index 3044660..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 0bce537..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index 5520da1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index e496198..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index 10d03ea..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index 5009f1a..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index b47b6f6..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index 88279b8..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index d4b841d..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index 3e80e24..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index b0c4cf2..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index 13eee57..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index ccd4d30..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_searchview.png
deleted file mode 100644
index ca76a70..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index df23c85..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index 77a55af..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_spinner.png
deleted file mode 100644
index 2bda0c9..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_switch.png
deleted file mode 100644
index 415c08c..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index 24ed111..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index d341ccb..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_textview.png
deleted file mode 100644
index b1672b1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index 3044660..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 0bce537..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index 5520da1..0000000
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_button.png b/tests/tests/holo/res/drawable-mdpi/holo_button.png
deleted file mode 100644
index 7562119..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_button_pressed.png
deleted file mode 100644
index 62e13e2..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_calendar_view.png
deleted file mode 100644
index ce2791f..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_calendar_view_feb.png
deleted file mode 100644
index 460fbef..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-mdpi/holo_checkbox.png
deleted file mode 100644
index 4a7ea9a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-mdpi/holo_chronometer.png
deleted file mode 100644
index a4b49c1..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-mdpi/holo_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-mdpi/holo_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-mdpi/holo_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-mdpi/holo_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-mdpi/holo_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-mdpi/holo_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_button.png
deleted file mode 100644
index 7562119..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_button_pressed.png
deleted file mode 100644
index 62e13e2..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_calendar_view.png
deleted file mode 100644
index ce2791f..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index 460fbef..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_checkbox.png
deleted file mode 100644
index 4a7ea9a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_chronometer.png
deleted file mode 100644
index a4b49c1..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index 7562119..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 62e13e2..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index ce2791f..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 460fbef..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index 4a7ea9a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index a4b49c1..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index 2693b19..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index d0b6f03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index da05890..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index d0c4d2a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 00a9aab..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 06f4070..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 88725b1..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 303db0c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index f62fa44..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 45ade7b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index 06ec15b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index ae610ac..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index c98afae..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index e2cafb8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index 1d4117c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index d3df320..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index bd93d7f..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index be0ea9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index 9131bdd..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 6ed70be..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index e824213..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index 7562119..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 62e13e2..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 191128d..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 6aade9f..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 4a7ea9a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index a4b49c1..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 7562119..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 62e13e2..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 191128d..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 6aade9f..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 4a7ea9a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index a4b49c1..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index 2693b19..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index d0b6f03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index da05890..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index d0c4d2a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 00a9aab..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 06f4070..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 88725b1..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 303db0c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index f62fa44..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 45ade7b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 06ec15b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index ae610ac..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index c98afae..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index e2cafb8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 1d4117c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index d3df320..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index bd93d7f..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index be0ea9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 9131bdd..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 6ed70be..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index e824213..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index 2693b19..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index d0b6f03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index da05890..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index d0c4d2a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 00a9aab..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 06f4070..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 88725b1..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 303db0c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index f62fa44..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 45ade7b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index 06ec15b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index ae610ac..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index c98afae..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index e2cafb8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index 1d4117c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index d3df320..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index bd93d7f..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index be0ea9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 9131bdd..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 6ed70be..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index e824213..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_radio_button.png
deleted file mode 100644
index 2693b19..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index d0b6f03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index da05890..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index d0c4d2a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index 00a9aab..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index 06f4070..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index 88725b1..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 303db0c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index f62fa44..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 45ade7b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_searchview.png
deleted file mode 100644
index 06ec15b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_searchview_query.png
deleted file mode 100644
index ae610ac..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index c98afae..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_spinner.png
deleted file mode 100644
index e2cafb8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_switch.png
deleted file mode 100644
index 1d4117c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_switch_checked.png
deleted file mode 100644
index d3df320..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_tabhost.png
deleted file mode 100644
index bd93d7f..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_textview.png
deleted file mode 100644
index be0ea9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_timepicker.png
deleted file mode 100644
index 9131bdd..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 6ed70be..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index e824213..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index 7562119..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 62e13e2..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index ce2791f..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 460fbef..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 4a7ea9a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index a4b49c1..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 7562119..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 62e13e2..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 191128d..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 6aade9f..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 4a7ea9a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index a4b49c1..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index 2693b19..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index d0b6f03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index da05890..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index d0c4d2a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 00a9aab..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 06f4070..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 88725b1..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 303db0c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index f62fa44..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 45ade7b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 06ec15b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index ae610ac..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index c98afae..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index e2cafb8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 1d4117c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index d3df320..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index bd93d7f..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index be0ea9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 9131bdd..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 6ed70be..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index e824213..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index 2693b19..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index d0b6f03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index da05890..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index d0c4d2a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 00a9aab..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index 06f4070..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 88725b1..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 303db0c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index f62fa44..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 45ade7b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index 06ec15b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index ae610ac..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index c98afae..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index e2cafb8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index 1d4117c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index d3df320..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index bd93d7f..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index be0ea9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 9131bdd..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 6ed70be..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index e824213..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_button.png
deleted file mode 100644
index 7cc6092..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index 4ad2510..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index 79d7391..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index b1b16a8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index a1220f3..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index 2da7d25..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index e65fcc7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index 5d8a03a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index 816073a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index 3ad2f99..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index 2fabd8a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index b6812e9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index 2bebaba..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index 3530a91..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index 51ee230..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index 793da54..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_searchview.png
deleted file mode 100644
index 4194f13..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index 8b3aa26..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index 6f1064e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_spinner.png
deleted file mode 100644
index 5e2d7ba..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_switch.png
deleted file mode 100644
index 60c9037..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index 5b9265b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index 81b4cd4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_textview.png
deleted file mode 100644
index 374faab..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index eccc648..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index 0c66c37..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index 0aaf137..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_button.png
deleted file mode 100644
index 7cc6092..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_button_pressed.png
deleted file mode 100644
index 4ad2510..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_light_calendar_view.png
deleted file mode 100644
index 8892d98..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index 89f972b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-mdpi/holo_light_checkbox.png
deleted file mode 100644
index a1220f3..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-mdpi/holo_light_chronometer.png
deleted file mode 100644
index 2da7d25..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-mdpi/holo_light_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-mdpi/holo_light_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index 7cc6092..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index 4ad2510..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index 8892d98..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index 89f972b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index a1220f3..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index 2da7d25..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index e65fcc7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index 5d8a03a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 816073a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index 3ad2f99..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index 2fabd8a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index b6812e9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index 2bebaba..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 3530a91..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index 51ee230..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 793da54..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index 4194f13..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index 8b3aa26..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index 6f1064e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index 5e2d7ba..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index 60c9037..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index 5b9265b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index 81b4cd4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index 374faab..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index eccc648..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index 0c66c37..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index 0aaf137..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_button.png
deleted file mode 100644
index 7cc6092..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index 4ad2510..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index 8892d98..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index 89f972b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index a1220f3..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index 2da7d25..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index 7cc6092..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 4ad2510..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 8892d98..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 89f972b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index a1220f3..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index 2da7d25..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index e65fcc7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 5d8a03a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 816073a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 3ad2f99..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 2fabd8a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index b6812e9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 2bebaba..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 3530a91..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 51ee230..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 793da54..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index 4194f13..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 8b3aa26..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 6f1064e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index 5e2d7ba..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index 60c9037..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 5b9265b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index 81b4cd4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index 374faab..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index eccc648..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 0c66c37..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 0aaf137..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index 7cc6092..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 4ad2510..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 79d7391..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index b1b16a8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index a1220f3..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 2da7d25..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 7cc6092..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 4ad2510..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 79d7391..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index b1b16a8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index a1220f3..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 2da7d25..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index e65fcc7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 5d8a03a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 816073a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 3ad2f99..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 2fabd8a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index b6812e9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 2bebaba..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 3530a91..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 51ee230..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 793da54..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 4194f13..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 8b3aa26..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 6f1064e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 5e2d7ba..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 60c9037..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 5b9265b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 81b4cd4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 374faab..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index eccc648..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 0c66c37..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 0aaf137..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index e65fcc7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 5d8a03a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 816073a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 3ad2f99..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 2fabd8a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index b6812e9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 2bebaba..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 3530a91..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 51ee230..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 793da54..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index 4194f13..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 8b3aa26..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 6f1064e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index 5e2d7ba..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index 60c9037..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 5b9265b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 81b4cd4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index 374faab..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index eccc648..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 0c66c37..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 0aaf137..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index e65fcc7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index 5d8a03a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 816073a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index 3ad2f99..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index 2fabd8a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index b6812e9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index 2bebaba..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 3530a91..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index 51ee230..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 793da54..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_searchview.png
deleted file mode 100644
index 4194f13..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index 8b3aa26..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index 6f1064e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_spinner.png
deleted file mode 100644
index 5e2d7ba..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_switch.png
deleted file mode 100644
index 60c9037..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index 5b9265b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index 81b4cd4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_textview.png
deleted file mode 100644
index 374faab..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index eccc648..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index 0c66c37..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index 0aaf137..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index 7cc6092..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 4ad2510..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 8892d98..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 89f972b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index a1220f3..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 2da7d25..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 7cc6092..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 4ad2510..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 79d7391..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index b1b16a8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index a1220f3..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 2da7d25..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index e65fcc7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 5d8a03a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 816073a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 3ad2f99..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 2fabd8a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index b6812e9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 2bebaba..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 3530a91..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 51ee230..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 793da54..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 4194f13..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 8b3aa26..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 6f1064e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 5e2d7ba..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 60c9037..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 5b9265b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 81b4cd4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 374faab..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index eccc648..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 0c66c37..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 0aaf137..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index e65fcc7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 5d8a03a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 816073a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 3ad2f99..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 2fabd8a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index b6812e9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 2bebaba..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 3530a91..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 51ee230..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 793da54..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index 4194f13..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 8b3aa26..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 6f1064e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index 5e2d7ba..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index 60c9037..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 5b9265b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 81b4cd4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index 374faab..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index eccc648..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 0c66c37..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 0aaf137..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_light_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_button.png
deleted file mode 100644
index 7cc6092..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index 4ad2510..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index 79d7391..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index b1b16a8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index a1220f3..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index 2da7d25..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index 7cc6092..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 4ad2510..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 79d7391..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index b1b16a8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index a1220f3..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 2da7d25..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index e65fcc7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 5d8a03a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 816073a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 3ad2f99..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 2fabd8a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index b6812e9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 2bebaba..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 3530a91..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 51ee230..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 793da54..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 4194f13..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 8b3aa26..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 6f1064e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 5e2d7ba..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 60c9037..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 5b9265b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 81b4cd4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 374faab..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index eccc648..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 0c66c37..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 0aaf137..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index e65fcc7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index 5d8a03a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 816073a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 3ad2f99..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index 2fabd8a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index b6812e9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 2bebaba..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 3530a91..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index 51ee230..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 793da54..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index 4194f13..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index 8b3aa26..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 6f1064e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index 5e2d7ba..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index 60c9037..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index 5b9265b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index 81b4cd4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index 374faab..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index eccc648..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index 0c66c37..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 0aaf137..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_button.png
deleted file mode 100644
index 7cc6092..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index 4ad2510..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index 79d7391..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index b1b16a8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_checkbox.png
deleted file mode 100644
index a1220f3..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_chronometer.png
deleted file mode 100644
index 2da7d25..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_radio_button.png
deleted file mode 100644
index e65fcc7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index 5d8a03a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index 816073a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index 3ad2f99..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index 2fabd8a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index b6812e9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index 2bebaba..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 3530a91..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index 51ee230..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 793da54..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_searchview.png
deleted file mode 100644
index 4194f13..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index 8b3aa26..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index 6f1064e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_spinner.png
deleted file mode 100644
index 5e2d7ba..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_switch.png
deleted file mode 100644
index 60c9037..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index 5b9265b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_tabhost.png
deleted file mode 100644
index 81b4cd4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_textview.png
deleted file mode 100644
index 374faab..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_timepicker.png
deleted file mode 100644
index eccc648..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index 0c66c37..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index 0aaf137..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_radio_button.png
deleted file mode 100644
index e65fcc7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_radio_button_checked.png
deleted file mode 100644
index 5d8a03a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-mdpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index 816073a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-mdpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index 3ad2f99..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_ratingbar_0.png
deleted file mode 100644
index 2fabd8a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index b6812e9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-mdpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index 2bebaba..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index 3530a91..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-mdpi/holo_light_ratingbar_5.png
deleted file mode 100644
index 51ee230..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index 793da54..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-mdpi/holo_light_searchview.png
deleted file mode 100644
index 4194f13..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-mdpi/holo_light_searchview_query.png
deleted file mode 100644
index 8b3aa26..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-mdpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index 6f1064e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_light_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_light_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_light_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-mdpi/holo_light_spinner.png
deleted file mode 100644
index 5e2d7ba..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_light_switch.png
deleted file mode 100644
index 60c9037..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_switch_checked.png
deleted file mode 100644
index 5b9265b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-mdpi/holo_light_tabhost.png
deleted file mode 100644
index 81b4cd4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-mdpi/holo_light_textview.png
deleted file mode 100644
index 374faab..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_light_timepicker.png
deleted file mode 100644
index eccc648..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-mdpi/holo_light_toggle_button.png
deleted file mode 100644
index 0c66c37..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index 0aaf137..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_button.png
deleted file mode 100644
index 7562119..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index 62e13e2..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index 191128d..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 6aade9f..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index 4a7ea9a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index a4b49c1..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index 7562119..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 62e13e2..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 191128d..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 6aade9f..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 4a7ea9a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index a4b49c1..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index 2693b19..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index d0b6f03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index da05890..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index d0c4d2a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 00a9aab..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index 06f4070..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 88725b1..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 303db0c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index f62fa44..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 45ade7b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 06ec15b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index ae610ac..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index c98afae..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index e2cafb8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 1d4117c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index d3df320..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index bd93d7f..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index be0ea9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 9131bdd..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 6ed70be..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index e824213..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index 2693b19..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index d0b6f03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index da05890..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index d0c4d2a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index 00a9aab..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 06f4070..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 88725b1..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 303db0c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index f62fa44..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 45ade7b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_searchview.png
deleted file mode 100644
index 06ec15b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index ae610ac..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index c98afae..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_spinner.png
deleted file mode 100644
index e2cafb8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_switch.png
deleted file mode 100644
index 1d4117c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index d3df320..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index bd93d7f..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_textview.png
deleted file mode 100644
index be0ea9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index 9131bdd..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 6ed70be..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index e824213..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_button.png
deleted file mode 100644
index 7562119..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_button_pressed.png
deleted file mode 100644
index 62e13e2..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_calendar_view.png
deleted file mode 100644
index 191128d..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index 6aade9f..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_checkbox.png
deleted file mode 100644
index 4a7ea9a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_chronometer.png
deleted file mode 100644
index a4b49c1..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_radio_button.png
deleted file mode 100644
index 2693b19..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index d0b6f03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index da05890..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index d0c4d2a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index 00a9aab..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index 06f4070..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index 88725b1..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 303db0c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index f62fa44..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 45ade7b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_searchview.png
deleted file mode 100644
index 06ec15b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_searchview_query.png
deleted file mode 100644
index ae610ac..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index c98afae..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_spinner.png
deleted file mode 100644
index e2cafb8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_switch.png
deleted file mode 100644
index 1d4117c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_switch_checked.png
deleted file mode 100644
index d3df320..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_tabhost.png
deleted file mode 100644
index bd93d7f..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_textview.png
deleted file mode 100644
index be0ea9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_timepicker.png
deleted file mode 100644
index 9131bdd..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_toggle_button.png
deleted file mode 100644
index 6ed70be..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index e824213..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-mdpi/holo_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-mdpi/holo_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-mdpi/holo_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-mdpi/holo_radio_button.png
deleted file mode 100644
index 2693b19..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_radio_button_checked.png
deleted file mode 100644
index d0b6f03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-mdpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index da05890..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-mdpi/holo_radiogroup_vertical.png
deleted file mode 100644
index d0c4d2a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_ratingbar_0.png
deleted file mode 100644
index 00a9aab..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index 06f4070..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-mdpi/holo_ratingbar_2point5.png
deleted file mode 100644
index 88725b1..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index 303db0c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-mdpi/holo_ratingbar_5.png
deleted file mode 100644
index f62fa44..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index 45ade7b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_searchview.png b/tests/tests/holo/res/drawable-mdpi/holo_searchview.png
deleted file mode 100644
index 06ec15b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-mdpi/holo_searchview_query.png
deleted file mode 100644
index ae610ac..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-mdpi/holo_searchview_query_hint.png
deleted file mode 100644
index c98afae..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_spinner.png b/tests/tests/holo/res/drawable-mdpi/holo_spinner.png
deleted file mode 100644
index e2cafb8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_switch.png
deleted file mode 100644
index 1d4117c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_switch_checked.png
deleted file mode 100644
index d3df320..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-mdpi/holo_tabhost.png
deleted file mode 100644
index bd93d7f..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_textview.png b/tests/tests/holo/res/drawable-mdpi/holo_textview.png
deleted file mode 100644
index be0ea9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_timepicker.png
deleted file mode 100644
index 9131bdd..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-mdpi/holo_toggle_button.png
deleted file mode 100644
index 6ed70be..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_toggle_button_checked.png
deleted file mode 100644
index e824213..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_button.png
deleted file mode 100644
index 7562119..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index 62e13e2..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index 191128d..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index 460fbef..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index 4a7ea9a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index a4b49c1..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index 7562119..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index 62e13e2..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index 191128d..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index 6aade9f..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index 4a7ea9a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index a4b49c1..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index 2693b19..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index d0b6f03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index da05890..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index d0c4d2a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index 00a9aab..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index 06f4070..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index 88725b1..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 303db0c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index f62fa44..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index 45ade7b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index 06ec15b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index ae610ac..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index c98afae..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index e2cafb8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index 1d4117c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index d3df320..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index bd93d7f..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index be0ea9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index 9131bdd..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 6ed70be..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index e824213..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index 2693b19..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index d0b6f03..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index da05890..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index d0c4d2a..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index 00a9aab..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index 06f4070..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index 88725b1..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index 303db0c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index f62fa44..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index 45ade7b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_searchview.png
deleted file mode 100644
index 06ec15b..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index ae610ac..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index c98afae..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_spinner.png
deleted file mode 100644
index e2cafb8..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_switch.png
deleted file mode 100644
index 1d4117c..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index d3df320..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index bd93d7f..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_textview.png
deleted file mode 100644
index be0ea9e..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index 9131bdd..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 6ed70be..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index e824213..0000000
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/display_info.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/display_info.png
deleted file mode 100644
index 1e61b19..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_button.png
deleted file mode 100644
index dfb178d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_button_pressed.png
deleted file mode 100644
index 0cff976..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_calendar_view_feb.png
deleted file mode 100644
index 8899deb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_checkbox.png
deleted file mode 100644
index b9f61f6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_chronometer.png
deleted file mode 100644
index ebfd536..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_button.png
deleted file mode 100644
index dfb178d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_button_pressed.png
deleted file mode 100644
index 0cff976..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index 8899deb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_checkbox.png
deleted file mode 100644
index b9f61f6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_chronometer.png
deleted file mode 100644
index ebfd536..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index dfb178d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 0cff976..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 8899deb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index b9f61f6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index ebfd536..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index ce8f320..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 7490622..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 15d3401..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index c404638..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 3ab433c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 4dc4b05..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 2ca1852..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 84d8b8c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 87c629e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 1122d5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index 8a89a0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 2c046e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 1e7615a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index 9768ef9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index ae05198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 1de6a9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index 9210a83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index 353b5d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index 7a986aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 4baaf15..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 9627984..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index dfb178d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 0cff976..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 8899deb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index b9f61f6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index ebfd536..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index dfb178d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 0cff976..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 8899deb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index b9f61f6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index ebfd536..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index ce8f320..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 7490622..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 15d3401..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index c404638..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 3ab433c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 4dc4b05..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 2ca1852..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 84d8b8c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 87c629e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 1122d5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 8a89a0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 2c046e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 1e7615a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 9768ef9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index ae05198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 1de6a9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 9210a83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 353b5d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 7a986aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 4baaf15..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 9627984..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index ce8f320..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 7490622..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 15d3401..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index c404638..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 3ab433c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 4dc4b05..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 2ca1852..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 84d8b8c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 87c629e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 1122d5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index 8a89a0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 2c046e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 1e7615a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index 9768ef9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index ae05198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 1de6a9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 9210a83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index 353b5d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 7a986aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 4baaf15..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 9627984..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_radio_button.png
deleted file mode 100644
index ce8f320..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index 7490622..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 15d3401..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index c404638..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index 3ab433c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index 4dc4b05..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index 2ca1852..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 84d8b8c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index 87c629e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 1122d5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_searchview.png
deleted file mode 100644
index 8a89a0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_searchview_query.png
deleted file mode 100644
index 2c046e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index 1e7615a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_spinner.png
deleted file mode 100644
index 9768ef9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_switch.png
deleted file mode 100644
index ae05198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_switch_checked.png
deleted file mode 100644
index 1de6a9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_tabhost.png
deleted file mode 100644
index 9210a83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_textview.png
deleted file mode 100644
index 353b5d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_timepicker.png
deleted file mode 100644
index 7a986aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 4baaf15..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index 9627984..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index dfb178d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 0cff976..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 8899deb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index b9f61f6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index ebfd536..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index dfb178d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 0cff976..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 8899deb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index b9f61f6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index ebfd536..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index ce8f320..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 7490622..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 15d3401..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index c404638..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 3ab433c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 4dc4b05..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 2ca1852..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 84d8b8c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 87c629e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 1122d5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 8a89a0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 2c046e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 1e7615a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 9768ef9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index ae05198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 1de6a9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 9210a83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 353b5d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 7a986aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 4baaf15..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 9627984..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index ce8f320..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 7490622..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 15d3401..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index c404638..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 3ab433c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index 4dc4b05..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 2ca1852..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 84d8b8c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 87c629e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 1122d5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index 8a89a0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 2c046e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 1e7615a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index 9768ef9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index ae05198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 1de6a9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 9210a83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index 353b5d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 7a986aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 4baaf15..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 9627984..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_edittext.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_button.png
deleted file mode 100644
index 8b707dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index 0a71e88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index 026c73c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index 44458e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index 799ca43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index bb36633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index 31a3d64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index a1e92d1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index 28629d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index b7ed0fd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index eb69c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index 8a38f74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ad6086..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index 1dd698f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index 1a64fe9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_searchview.png
deleted file mode 100644
index 12c8e8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index 4646c79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index 5674ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_spinner.png
deleted file mode 100644
index f25be08..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_switch.png
deleted file mode 100644
index 2b945e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index 7dc944d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index 35f265e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_textview.png
deleted file mode 100644
index 78c9c3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index e07810a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index c8a72b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index 3ce3612..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_button.png
deleted file mode 100644
index 8b707dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_button_pressed.png
deleted file mode 100644
index 0a71e88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index 026c73c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_checkbox.png
deleted file mode 100644
index 44458e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_chronometer.png
deleted file mode 100644
index 799ca43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index 8b707dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index 0a71e88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index 026c73c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index 44458e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index 799ca43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index bb36633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index 31a3d64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index a1e92d1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index 28629d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index b7ed0fd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index eb69c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index 8a38f74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ad6086..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index 1dd698f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 1a64fe9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index 12c8e8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index 4646c79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index 5674ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index f25be08..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index 2b945e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index 7dc944d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index 35f265e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index 78c9c3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index e07810a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index c8a72b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index 3ce3612..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_button.png
deleted file mode 100644
index 8b707dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index 0a71e88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index 026c73c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index 44458e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index 799ca43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index 8b707dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 0a71e88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 026c73c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index 44458e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index 799ca43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index bb36633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 31a3d64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index a1e92d1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 28629d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index b7ed0fd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index eb69c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 8a38f74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ad6086..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 1dd698f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 1a64fe9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index 12c8e8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 4646c79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 5674ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index f25be08..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index 2b945e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 7dc944d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index 35f265e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index 78c9c3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index e07810a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index c8a72b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 3ce3612..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index 8b707dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 0a71e88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 026c73c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 44458e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 799ca43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 8b707dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 0a71e88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 026c73c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 44458e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 799ca43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index bb36633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 31a3d64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index a1e92d1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 28629d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index b7ed0fd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index eb69c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 8a38f74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ad6086..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 1dd698f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 1a64fe9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 12c8e8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 4646c79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 5674ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index f25be08..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 2b945e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 7dc944d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 35f265e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 78c9c3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index e07810a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index c8a72b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 3ce3612..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index bb36633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 31a3d64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index a1e92d1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 28629d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index b7ed0fd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index eb69c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 8a38f74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ad6086..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 1dd698f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 1a64fe9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index 12c8e8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 4646c79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 5674ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index f25be08..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index 2b945e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 7dc944d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 35f265e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index 78c9c3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index e07810a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index c8a72b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 3ce3612..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index bb36633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index 31a3d64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index a1e92d1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index 28629d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index b7ed0fd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index eb69c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index 8a38f74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ad6086..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index 1dd698f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 1a64fe9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_searchview.png
deleted file mode 100644
index 12c8e8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index 4646c79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index 5674ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_spinner.png
deleted file mode 100644
index f25be08..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_switch.png
deleted file mode 100644
index 2b945e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index 7dc944d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index 35f265e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_textview.png
deleted file mode 100644
index 78c9c3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index e07810a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index c8a72b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index 3ce3612..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index 8b707dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 0a71e88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 026c73c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 44458e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 799ca43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 8b707dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 0a71e88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 026c73c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 44458e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 799ca43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index bb36633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 31a3d64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index a1e92d1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 28629d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index b7ed0fd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index eb69c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 8a38f74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ad6086..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 1dd698f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 1a64fe9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 12c8e8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 4646c79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 5674ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index f25be08..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 2b945e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 7dc944d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 35f265e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 78c9c3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index e07810a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index c8a72b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 3ce3612..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index bb36633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 31a3d64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index a1e92d1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 28629d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index b7ed0fd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index eb69c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 8a38f74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ad6086..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 1dd698f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 1a64fe9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index 12c8e8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 4646c79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 5674ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index f25be08..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index 2b945e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 7dc944d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 35f265e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index 78c9c3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index e07810a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index c8a72b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 3ce3612..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_button.png
deleted file mode 100644
index 8b707dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index 0a71e88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 026c73c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index 44458e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index 799ca43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index 8b707dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 0a71e88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 026c73c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 44458e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 799ca43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index bb36633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 31a3d64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index a1e92d1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 28629d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index b7ed0fd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index eb69c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 8a38f74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ad6086..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 1dd698f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 1a64fe9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 12c8e8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 4646c79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 5674ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index f25be08..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 2b945e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 7dc944d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 35f265e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 78c9c3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index e07810a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index c8a72b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 3ce3612..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index bb36633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index 31a3d64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index a1e92d1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 28629d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index b7ed0fd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index eb69c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 8a38f74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ad6086..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index 1dd698f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 1a64fe9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index 12c8e8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index 4646c79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 5674ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index f25be08..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index 2b945e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index 7dc944d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index 35f265e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index 78c9c3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index e07810a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index c8a72b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 3ce3612..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_button.png
deleted file mode 100644
index 8b707dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index 0a71e88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index 026c73c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_checkbox.png
deleted file mode 100644
index 44458e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_chronometer.png
deleted file mode 100644
index 799ca43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_radio_button.png
deleted file mode 100644
index bb36633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index 31a3d64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index a1e92d1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index 28629d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index b7ed0fd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index eb69c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index 8a38f74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ad6086..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index 1dd698f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 1a64fe9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_searchview.png
deleted file mode 100644
index 12c8e8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index 4646c79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index 5674ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_spinner.png
deleted file mode 100644
index f25be08..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_switch.png
deleted file mode 100644
index 2b945e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index 7dc944d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_tabhost.png
deleted file mode 100644
index 35f265e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_textview.png
deleted file mode 100644
index 78c9c3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_timepicker.png
deleted file mode 100644
index e07810a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index c8a72b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index 3ce3612..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_radio_button.png
deleted file mode 100644
index bb36633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_radio_button_checked.png
deleted file mode 100644
index 31a3d64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index a1e92d1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index 28629d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_ratingbar_0.png
deleted file mode 100644
index b7ed0fd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index eb69c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index 8a38f74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ad6086..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_ratingbar_5.png
deleted file mode 100644
index 1dd698f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index 1a64fe9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_searchview.png
deleted file mode 100644
index 12c8e8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_searchview_query.png
deleted file mode 100644
index 4646c79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index 5674ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_spinner.png
deleted file mode 100644
index f25be08..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_switch.png
deleted file mode 100644
index 2b945e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_switch_checked.png
deleted file mode 100644
index 7dc944d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_tabhost.png
deleted file mode 100644
index 35f265e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_textview.png
deleted file mode 100644
index 78c9c3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_timepicker.png
deleted file mode 100644
index e07810a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_toggle_button.png
deleted file mode 100644
index c8a72b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index 3ce3612..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_button.png
deleted file mode 100644
index dfb178d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index 0cff976..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 8899deb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index b9f61f6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index ebfd536..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index dfb178d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 0cff976..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 8899deb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index b9f61f6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index ebfd536..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index ce8f320..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 7490622..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 15d3401..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index c404638..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 3ab433c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index 4dc4b05..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 2ca1852..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 84d8b8c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 87c629e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 1122d5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 8a89a0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 2c046e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 1e7615a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 9768ef9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index ae05198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 1de6a9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 9210a83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 353b5d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 7a986aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 4baaf15..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 9627984..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index ce8f320..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index 7490622..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 15d3401..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index c404638..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index 3ab433c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 4dc4b05..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 2ca1852..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 84d8b8c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index 87c629e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 1122d5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_searchview.png
deleted file mode 100644
index 8a89a0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index 2c046e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 1e7615a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_spinner.png
deleted file mode 100644
index 9768ef9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_switch.png
deleted file mode 100644
index ae05198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index 1de6a9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index 9210a83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_textview.png
deleted file mode 100644
index 353b5d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index 7a986aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 4baaf15..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 9627984..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_button.png
deleted file mode 100644
index dfb178d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_button_pressed.png
deleted file mode 100644
index 0cff976..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index 8899deb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_checkbox.png
deleted file mode 100644
index b9f61f6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_chronometer.png
deleted file mode 100644
index ebfd536..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_radio_button.png
deleted file mode 100644
index ce8f320..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index 7490622..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index 15d3401..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index c404638..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index 3ab433c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index 4dc4b05..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index 2ca1852..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 84d8b8c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index 87c629e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 1122d5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_searchview.png
deleted file mode 100644
index 8a89a0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_searchview_query.png
deleted file mode 100644
index 2c046e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index 1e7615a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_spinner.png
deleted file mode 100644
index 9768ef9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_switch.png
deleted file mode 100644
index ae05198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_switch_checked.png
deleted file mode 100644
index 1de6a9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_tabhost.png
deleted file mode 100644
index 9210a83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_textview.png
deleted file mode 100644
index 353b5d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_timepicker.png
deleted file mode 100644
index 7a986aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_toggle_button.png
deleted file mode 100644
index 4baaf15..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index 9627984..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_radio_button.png
deleted file mode 100644
index ce8f320..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_radio_button_checked.png
deleted file mode 100644
index 7490622..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index 15d3401..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_radiogroup_vertical.png
deleted file mode 100644
index c404638..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_ratingbar_0.png
deleted file mode 100644
index 3ab433c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index 4dc4b05..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_ratingbar_2point5.png
deleted file mode 100644
index 2ca1852..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index 84d8b8c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_ratingbar_5.png
deleted file mode 100644
index 87c629e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index 1122d5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_searchview.png
deleted file mode 100644
index 8a89a0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_searchview_query.png
deleted file mode 100644
index 2c046e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_searchview_query_hint.png
deleted file mode 100644
index 1e7615a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_spinner.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_spinner.png
deleted file mode 100644
index 9768ef9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_switch.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_switch.png
deleted file mode 100644
index ae05198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_switch_checked.png
deleted file mode 100644
index 1de6a9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_tabhost.png
deleted file mode 100644
index 9210a83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_textview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_textview.png
deleted file mode 100644
index 353b5d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_timepicker.png
deleted file mode 100644
index 7a986aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_toggle_button.png
deleted file mode 100644
index 4baaf15..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_toggle_button_checked.png
deleted file mode 100644
index 9627984..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_button.png
deleted file mode 100644
index dfb178d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index 0cff976..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index 8899deb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index b9f61f6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index ebfd536..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index dfb178d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index 0cff976..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index 8899deb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index b9f61f6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index ebfd536..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index 55538d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index 2e1adb0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index 7d6931d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index 29176c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index 74ae241..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index 9898e72..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index 02e146d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index c692922..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index b474624..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index 2ef932e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index ce8f320..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index 7490622..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index 15d3401..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index c404638..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index 3ab433c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index 4dc4b05..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index 2ca1852..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 84d8b8c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index 87c629e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index 1122d5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index 8a89a0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index 2c046e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index 1e7615a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index 9768ef9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index ae05198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index 1de6a9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index 9210a83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index 353b5d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index 7a986aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 4baaf15..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index 9627984..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index ce8f320..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index 7490622..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index 15d3401..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index c404638..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index 3ab433c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index 4dc4b05..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index 2ca1852..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index 84d8b8c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index 87c629e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index 1122d5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_searchview.png
deleted file mode 100644
index 8a89a0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index 2c046e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index 1e7615a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_spinner.png
deleted file mode 100644
index 9768ef9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_switch.png
deleted file mode 100644
index ae05198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index 1de6a9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index 9210a83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_textview.png
deleted file mode 100644
index 353b5d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index 7a986aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 4baaf15..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index 9627984..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/display_info.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/display_info.png
deleted file mode 100644
index 123440e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/display_info.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/display_info.png
deleted file mode 100644
index 7b8a0ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/display_info.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/display_info.png
deleted file mode 100644
index e285898..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/display_info.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/display_info.png
deleted file mode 100644
index af4eaaa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/display_info.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/display_info.png
deleted file mode 100644
index 995af67..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/display_info.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/display_info.png
deleted file mode 100644
index 4d9d810..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_button.png
deleted file mode 100644
index d7b7a8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_button_pressed.png
deleted file mode 100644
index aa3dfdd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_calendar_view_feb.png
deleted file mode 100644
index 3231fd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_checkbox.png
deleted file mode 100644
index b6c52ff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_chronometer.png
deleted file mode 100644
index b4831bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_button.png
deleted file mode 100644
index d7b7a8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_button_pressed.png
deleted file mode 100644
index aa3dfdd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index 3231fd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_checkbox.png
deleted file mode 100644
index b6c52ff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_chronometer.png
deleted file mode 100644
index b4831bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index d7b7a8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index aa3dfdd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 3231fd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index b6c52ff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index b4831bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index e496198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 10d03ea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 5009f1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index b47b6f6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 88279b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index d4b841d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 3e80e24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index b0c4cf2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 13eee57..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index ccd4d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index d1bb1a5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index df23c85..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 77a55af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index 2bda0c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index 415c08c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 24ed111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index ff0b781..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index b1672b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index 3044660..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 0bce537..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 5520da1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index d7b7a8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index aa3dfdd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 3231fd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index b6c52ff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index b4831bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index d7b7a8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index aa3dfdd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 3231fd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index b6c52ff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index b4831bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index e496198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 10d03ea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 5009f1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index b47b6f6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 88279b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index d4b841d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 3e80e24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index b0c4cf2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 13eee57..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index ccd4d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index d1bb1a5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index df23c85..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 77a55af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 2bda0c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 415c08c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 24ed111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index ff0b781..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index b1672b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 3044660..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 0bce537..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 5520da1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index e496198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 10d03ea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 5009f1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index b47b6f6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 88279b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index d4b841d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 3e80e24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b0c4cf2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 13eee57..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index ccd4d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index d1bb1a5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index df23c85..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 77a55af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index 2bda0c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index 415c08c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 24ed111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index ff0b781..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index b1672b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 3044660..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 0bce537..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 5520da1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_radio_button.png
deleted file mode 100644
index e496198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index 10d03ea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 5009f1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index b47b6f6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index 88279b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index d4b841d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index 3e80e24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index b0c4cf2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index 13eee57..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index ccd4d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_searchview.png
deleted file mode 100644
index d1bb1a5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_searchview_query.png
deleted file mode 100644
index df23c85..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index 77a55af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_spinner.png
deleted file mode 100644
index 2bda0c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_switch.png
deleted file mode 100644
index 415c08c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_switch_checked.png
deleted file mode 100644
index 24ed111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_tabhost.png
deleted file mode 100644
index ff0b781..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_textview.png
deleted file mode 100644
index b1672b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_timepicker.png
deleted file mode 100644
index 3044660..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 0bce537..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index 5520da1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index d7b7a8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index aa3dfdd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 3231fd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index b6c52ff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index b4831bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index d7b7a8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index aa3dfdd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 3231fd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index b6c52ff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index b4831bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index e496198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 10d03ea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 5009f1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index b47b6f6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 88279b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index d4b841d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 3e80e24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b0c4cf2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 13eee57..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index ccd4d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index d1bb1a5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index df23c85..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 77a55af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 2bda0c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 415c08c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 24ed111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index ff0b781..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index b1672b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 3044660..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 0bce537..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 5520da1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index e496198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 10d03ea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 5009f1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index b47b6f6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 88279b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index d4b841d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 3e80e24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index b0c4cf2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 13eee57..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index ccd4d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index d1bb1a5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index df23c85..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 77a55af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index 2bda0c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index 415c08c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 24ed111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index ff0b781..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index b1672b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 3044660..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 0bce537..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 5520da1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_edittext.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_button.png
deleted file mode 100644
index 7534511..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index 6dc5b0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index 26756a2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index 1089910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index 6bb85d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index f4235b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index a01890f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index 03c3e01..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index 0afe7b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index 924047a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index 9444719..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index 2f1a8a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index 47c7851..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index e35abf9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index a9d7fd4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index 23afb05..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index 1747219..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_searchview.png
deleted file mode 100644
index 9524996..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index d56c96b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index 8314ad3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_spinner.png
deleted file mode 100644
index 38a8c16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_switch.png
deleted file mode 100644
index 7b68f87..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index 72f4665..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index adad11b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_textview.png
deleted file mode 100644
index bae6b0e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index 73daef6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index eda073d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index c3202d4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_button.png
deleted file mode 100644
index 7534511..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_button_pressed.png
deleted file mode 100644
index 6dc5b0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index 26756a2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_checkbox.png
deleted file mode 100644
index 1089910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_chronometer.png
deleted file mode 100644
index 6bb85d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index 7534511..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index 6dc5b0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index 26756a2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index 1089910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index 6bb85d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index f4235b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index a01890f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index 03c3e01..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index 0afe7b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 924047a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index 9444719..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index 2f1a8a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 47c7851..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index e35abf9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index a9d7fd4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index 23afb05..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 1747219..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index 9524996..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index d56c96b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index 8314ad3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index 38a8c16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index 7b68f87..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index 72f4665..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index adad11b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index bae6b0e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index 73daef6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index eda073d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index c3202d4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_button.png
deleted file mode 100644
index 7534511..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index 6dc5b0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index 26756a2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index 1089910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index 6bb85d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index 7534511..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 6dc5b0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 26756a2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index 1089910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index 6bb85d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index f4235b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index a01890f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index 03c3e01..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 0afe7b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 924047a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 9444719..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 2f1a8a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 47c7851..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index e35abf9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index a9d7fd4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 23afb05..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 1747219..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index 9524996..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index d56c96b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 8314ad3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index 38a8c16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index 7b68f87..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 72f4665..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index adad11b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index bae6b0e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index 73daef6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index eda073d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index c3202d4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index 7534511..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 6dc5b0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 26756a2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 1089910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 6bb85d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 7534511..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 6dc5b0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 26756a2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 1089910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 6bb85d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index f4235b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index a01890f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index 03c3e01..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 0afe7b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 924047a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 9444719..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 2f1a8a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 47c7851..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index e35abf9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index a9d7fd4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 23afb05..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 1747219..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 9524996..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index d56c96b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 8314ad3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 38a8c16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 7b68f87..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 72f4665..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index adad11b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index bae6b0e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 73daef6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index eda073d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index c3202d4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index f4235b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index a01890f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index 03c3e01..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 0afe7b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 924047a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 9444719..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 2f1a8a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 47c7851..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index e35abf9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index a9d7fd4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 23afb05..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 1747219..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index 9524996..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index d56c96b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 8314ad3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index 38a8c16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index 7b68f87..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 72f4665..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index adad11b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index bae6b0e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 73daef6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index eda073d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index c3202d4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index f4235b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index a01890f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index 03c3e01..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index 0afe7b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 924047a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index 9444719..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index 2f1a8a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index 47c7851..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index e35abf9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index a9d7fd4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index 23afb05..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 1747219..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_searchview.png
deleted file mode 100644
index 9524996..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index d56c96b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index 8314ad3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_spinner.png
deleted file mode 100644
index 38a8c16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_switch.png
deleted file mode 100644
index 7b68f87..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index 72f4665..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index adad11b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_textview.png
deleted file mode 100644
index bae6b0e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index 73daef6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index eda073d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index c3202d4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index 7534511..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 6dc5b0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 26756a2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 1089910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 6bb85d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 7534511..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 6dc5b0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 26756a2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 1089910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 6bb85d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index f4235b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index a01890f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index 03c3e01..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 0afe7b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 924047a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 9444719..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 2f1a8a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 47c7851..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index e35abf9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index a9d7fd4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 23afb05..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 1747219..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 9524996..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index d56c96b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 8314ad3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 38a8c16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 7b68f87..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 72f4665..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index adad11b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index bae6b0e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 73daef6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index eda073d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index c3202d4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index f4235b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index a01890f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index 03c3e01..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 0afe7b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 924047a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 9444719..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 2f1a8a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index 47c7851..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index e35abf9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index a9d7fd4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 23afb05..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 1747219..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index 9524996..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index d56c96b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 8314ad3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index 38a8c16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index 7b68f87..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 72f4665..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index adad11b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index bae6b0e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 73daef6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index eda073d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index c3202d4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_button.png
deleted file mode 100644
index 7534511..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index 6dc5b0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 26756a2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index 1089910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index 6bb85d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index 7534511..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 6dc5b0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 26756a2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 1089910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 6bb85d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index f4235b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index a01890f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index 03c3e01..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 0afe7b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 924047a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 9444719..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 2f1a8a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index 47c7851..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index e35abf9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index a9d7fd4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 23afb05..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 1747219..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 9524996..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index d56c96b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 8314ad3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 38a8c16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 7b68f87..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 72f4665..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index adad11b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index bae6b0e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 73daef6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index eda073d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index c3202d4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index f4235b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index a01890f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index 03c3e01..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index 0afe7b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 924047a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 9444719..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index 2f1a8a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 47c7851..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index e35abf9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index a9d7fd4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index 23afb05..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 1747219..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index 9524996..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index d56c96b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 8314ad3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index 38a8c16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index 7b68f87..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index 72f4665..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index adad11b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index bae6b0e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index 73daef6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index eda073d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index c3202d4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_button.png
deleted file mode 100644
index 7534511..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index 6dc5b0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index 26756a2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_checkbox.png
deleted file mode 100644
index 1089910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_chronometer.png
deleted file mode 100644
index 6bb85d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index f4235b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index a01890f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_radio_button.png
deleted file mode 100644
index 03c3e01..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index 0afe7b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index 924047a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index 9444719..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index 2f1a8a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index 47c7851..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index e35abf9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index a9d7fd4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index 23afb05..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 1747219..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_searchview.png
deleted file mode 100644
index 9524996..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index d56c96b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index 8314ad3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_spinner.png
deleted file mode 100644
index 38a8c16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_switch.png
deleted file mode 100644
index 7b68f87..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index 72f4665..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_tabhost.png
deleted file mode 100644
index adad11b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_textview.png
deleted file mode 100644
index bae6b0e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_timepicker.png
deleted file mode 100644
index 73daef6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index eda073d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index c3202d4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index f4235b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index a01890f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_radio_button.png
deleted file mode 100644
index 03c3e01..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_radio_button_checked.png
deleted file mode 100644
index 0afe7b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index 924047a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index 9444719..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_ratingbar_0.png
deleted file mode 100644
index 2f1a8a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index 47c7851..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index e35abf9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index a9d7fd4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_ratingbar_5.png
deleted file mode 100644
index 23afb05..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index 1747219..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_searchview.png
deleted file mode 100644
index 9524996..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_searchview_query.png
deleted file mode 100644
index d56c96b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index 8314ad3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_spinner.png
deleted file mode 100644
index 38a8c16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_switch.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_switch.png
deleted file mode 100644
index 7b68f87..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_switch_checked.png
deleted file mode 100644
index 72f4665..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_tabhost.png
deleted file mode 100644
index adad11b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_textview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_textview.png
deleted file mode 100644
index bae6b0e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_timepicker.png
deleted file mode 100644
index 73daef6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_toggle_button.png
deleted file mode 100644
index eda073d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index c3202d4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_button.png
deleted file mode 100644
index d7b7a8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index aa3dfdd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 3231fd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index b6c52ff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index b4831bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index d7b7a8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index aa3dfdd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 3231fd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index b6c52ff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index b4831bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index e496198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 10d03ea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 5009f1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index b47b6f6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 88279b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index d4b841d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 3e80e24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index b0c4cf2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 13eee57..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index ccd4d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index d1bb1a5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index df23c85..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 77a55af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 2bda0c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 415c08c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 24ed111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index ff0b781..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index b1672b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 3044660..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 0bce537..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 5520da1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index e496198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index 10d03ea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 5009f1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index b47b6f6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index 88279b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index d4b841d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 3e80e24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b0c4cf2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index 13eee57..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index ccd4d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_searchview.png
deleted file mode 100644
index d1bb1a5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index df23c85..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 77a55af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_spinner.png
deleted file mode 100644
index 2bda0c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_switch.png
deleted file mode 100644
index 415c08c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index 24ed111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index ff0b781..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_textview.png
deleted file mode 100644
index b1672b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index 3044660..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 0bce537..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 5520da1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_button.png
deleted file mode 100644
index d7b7a8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_button_pressed.png
deleted file mode 100644
index aa3dfdd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index 3231fd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_checkbox.png
deleted file mode 100644
index b6c52ff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_chronometer.png
deleted file mode 100644
index b4831bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_radio_button.png
deleted file mode 100644
index e496198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index 10d03ea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index 5009f1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index b47b6f6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index 88279b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index d4b841d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index 3e80e24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index b0c4cf2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index 13eee57..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index ccd4d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_searchview.png
deleted file mode 100644
index d1bb1a5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_searchview_query.png
deleted file mode 100644
index df23c85..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index 77a55af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_spinner.png
deleted file mode 100644
index 2bda0c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_switch.png
deleted file mode 100644
index 415c08c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_switch_checked.png
deleted file mode 100644
index 24ed111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_tabhost.png
deleted file mode 100644
index ff0b781..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_textview.png
deleted file mode 100644
index b1672b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_timepicker.png
deleted file mode 100644
index 3044660..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_toggle_button.png
deleted file mode 100644
index 0bce537..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index 5520da1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_radio_button.png
deleted file mode 100644
index e496198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_radio_button_checked.png
deleted file mode 100644
index 10d03ea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index 5009f1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_radiogroup_vertical.png
deleted file mode 100644
index b47b6f6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_ratingbar_0.png
deleted file mode 100644
index 88279b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index d4b841d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_ratingbar_2point5.png
deleted file mode 100644
index 3e80e24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index b0c4cf2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_ratingbar_5.png
deleted file mode 100644
index 13eee57..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index ccd4d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_searchview.png
deleted file mode 100644
index d1bb1a5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_searchview_query.png
deleted file mode 100644
index df23c85..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_searchview_query_hint.png
deleted file mode 100644
index 77a55af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_spinner.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_spinner.png
deleted file mode 100644
index 2bda0c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_switch.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_switch.png
deleted file mode 100644
index 415c08c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_switch_checked.png
deleted file mode 100644
index 24ed111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_tabhost.png
deleted file mode 100644
index ff0b781..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_textview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_textview.png
deleted file mode 100644
index b1672b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_timepicker.png
deleted file mode 100644
index 3044660..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_toggle_button.png
deleted file mode 100644
index 0bce537..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_toggle_button_checked.png
deleted file mode 100644
index 5520da1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_button.png
deleted file mode 100644
index d7b7a8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index aa3dfdd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index 3231fd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index b6c52ff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index b4831bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index d7b7a8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index aa3dfdd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index 3231fd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index b6c52ff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index b4831bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index 104f347..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index ce75e74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index bd4e1d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index 0248d03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index 39c38ae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index f3e134f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index 30d934f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index 0c0bc1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index 0bc968d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index 063ab8d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index e496198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index 10d03ea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index 5009f1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index b47b6f6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index 88279b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index d4b841d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index 3e80e24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b0c4cf2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index 13eee57..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index ccd4d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index d1bb1a5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index df23c85..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index 77a55af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index 2bda0c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index 415c08c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index 24ed111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index ff0b781..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index b1672b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index 3044660..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 0bce537..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index 5520da1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index e496198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index 10d03ea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index 5009f1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index b47b6f6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index 88279b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index d4b841d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index 3e80e24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index b0c4cf2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index 13eee57..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index ccd4d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_searchview.png
deleted file mode 100644
index d1bb1a5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index df23c85..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index 77a55af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_spinner.png
deleted file mode 100644
index 2bda0c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_switch.png
deleted file mode 100644
index 415c08c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index 24ed111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index ff0b781..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_textview.png
deleted file mode 100644
index b1672b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index 3044660..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 0bce537..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index 5520da1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/display_info.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/display_info.png
deleted file mode 100644
index b875d76..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_button.png
deleted file mode 100644
index 7562119..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_button_pressed.png
deleted file mode 100644
index 62e13e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_calendar_view_feb.png
deleted file mode 100644
index 6aade9f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_checkbox.png
deleted file mode 100644
index 4a7ea9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_chronometer.png
deleted file mode 100644
index a4b49c1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_button.png
deleted file mode 100644
index 7562119..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_button_pressed.png
deleted file mode 100644
index 62e13e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index 6aade9f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_checkbox.png
deleted file mode 100644
index 4a7ea9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_chronometer.png
deleted file mode 100644
index a4b49c1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index 7562119..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 62e13e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 6aade9f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index 4a7ea9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index a4b49c1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index 2693b19..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index d0b6f03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index da05890..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index d0c4d2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 00a9aab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 06f4070..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 88725b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 303db0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index f62fa44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 45ade7b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index d4ccda7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index ae610ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index c98afae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index e2cafb8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index 1d4117c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index d3df320..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index 9441097..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index be0ea9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index 9131bdd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 6ed70be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index e824213..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index 7562119..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 62e13e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 6aade9f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 4a7ea9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index a4b49c1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 7562119..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 62e13e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 6aade9f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 4a7ea9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index a4b49c1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index 2693b19..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index d0b6f03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index da05890..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index d0c4d2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 00a9aab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 06f4070..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 88725b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 303db0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index f62fa44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 45ade7b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index d4ccda7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index ae610ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index c98afae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index e2cafb8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 1d4117c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index d3df320..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 9441097..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index be0ea9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 9131bdd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 6ed70be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index e824213..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index 2693b19..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index d0b6f03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index da05890..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index d0c4d2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 00a9aab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 06f4070..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 88725b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 303db0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index f62fa44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 45ade7b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index d4ccda7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index ae610ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index c98afae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index e2cafb8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index 1d4117c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index d3df320..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 9441097..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index be0ea9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 9131bdd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 6ed70be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index e824213..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_radio_button.png
deleted file mode 100644
index 2693b19..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index d0b6f03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index da05890..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index d0c4d2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index 00a9aab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index 06f4070..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index 88725b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 303db0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index f62fa44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 45ade7b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_searchview.png
deleted file mode 100644
index d4ccda7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_searchview_query.png
deleted file mode 100644
index ae610ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index c98afae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_spinner.png
deleted file mode 100644
index e2cafb8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_switch.png
deleted file mode 100644
index 1d4117c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_switch_checked.png
deleted file mode 100644
index d3df320..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_tabhost.png
deleted file mode 100644
index 9441097..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_textview.png
deleted file mode 100644
index be0ea9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_timepicker.png
deleted file mode 100644
index 9131bdd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 6ed70be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index e824213..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index 7562119..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 62e13e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 460fbef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 4a7ea9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index a4b49c1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 7562119..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 62e13e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 6aade9f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 4a7ea9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index a4b49c1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index 2693b19..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index d0b6f03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index da05890..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index d0c4d2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 00a9aab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 06f4070..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 88725b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 303db0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index f62fa44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 45ade7b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index d4ccda7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index ae610ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index c98afae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index e2cafb8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 1d4117c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index d3df320..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 9441097..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index be0ea9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 9131bdd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 6ed70be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index e824213..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index 2693b19..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index d0b6f03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index da05890..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index d0c4d2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 00a9aab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index 06f4070..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 88725b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 303db0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index f62fa44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 45ade7b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index d4ccda7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index ae610ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index c98afae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index e2cafb8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index 1d4117c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index d3df320..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 9441097..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index be0ea9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 9131bdd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 6ed70be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index e824213..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_button.png
deleted file mode 100644
index 7cc6092..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index 4ad2510..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index b1b16a8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index a1220f3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index 2da7d25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index e65fcc7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index 5d8a03a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index 816073a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index 3ad2f99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index 2fabd8a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index b6812e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index 2bebaba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index 3530a91..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index 51ee230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index 793da54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_searchview.png
deleted file mode 100644
index 5a30758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index 8b3aa26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index 6f1064e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_spinner.png
deleted file mode 100644
index 5e2d7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_switch.png
deleted file mode 100644
index 60c9037..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index 5b9265b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index 65f8e5a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_textview.png
deleted file mode 100644
index 374faab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index eccc648..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index 0c66c37..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index 0aaf137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_button.png
deleted file mode 100644
index 7cc6092..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_button_pressed.png
deleted file mode 100644
index 4ad2510..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index b1b16a8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_checkbox.png
deleted file mode 100644
index a1220f3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_chronometer.png
deleted file mode 100644
index 2da7d25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index 7cc6092..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index 4ad2510..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index b1b16a8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index a1220f3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index 2da7d25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index e65fcc7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index 5d8a03a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 816073a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index 3ad2f99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index 2fabd8a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index b6812e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index 2bebaba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 3530a91..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index 51ee230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 793da54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index 5a30758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index 8b3aa26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index 6f1064e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index 5e2d7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index 60c9037..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index 5b9265b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index 65f8e5a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index 374faab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index eccc648..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index 0c66c37..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index 0aaf137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_button.png
deleted file mode 100644
index 7cc6092..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index 4ad2510..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index b1b16a8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index a1220f3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index 2da7d25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index 7cc6092..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 4ad2510..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index b1b16a8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index a1220f3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index 2da7d25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index e65fcc7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 5d8a03a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 816073a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 3ad2f99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 2fabd8a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index b6812e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 2bebaba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 3530a91..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 51ee230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 793da54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index 5a30758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 8b3aa26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 6f1064e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index 5e2d7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index 60c9037..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 5b9265b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index 65f8e5a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index 374faab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index eccc648..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 0c66c37..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 0aaf137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index 7cc6092..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 4ad2510..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index b1b16a8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index a1220f3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 2da7d25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 7cc6092..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 4ad2510..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index b1b16a8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index a1220f3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 2da7d25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index e65fcc7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 5d8a03a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 816073a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 3ad2f99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 2fabd8a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index b6812e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 2bebaba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 3530a91..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 51ee230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 793da54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 5a30758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 8b3aa26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 6f1064e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 5e2d7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 60c9037..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 5b9265b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 65f8e5a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 374faab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index eccc648..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 0c66c37..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 0aaf137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index e65fcc7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 5d8a03a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 816073a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 3ad2f99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 2fabd8a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index b6812e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 2bebaba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 3530a91..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 51ee230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 793da54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index 5a30758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 8b3aa26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 6f1064e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index 5e2d7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index 60c9037..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 5b9265b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 65f8e5a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index 374faab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index eccc648..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 0c66c37..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 0aaf137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index e65fcc7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index 5d8a03a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 816073a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index 3ad2f99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index 2fabd8a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index b6812e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index 2bebaba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 3530a91..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index 51ee230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 793da54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_searchview.png
deleted file mode 100644
index 5a30758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index 8b3aa26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index 6f1064e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_spinner.png
deleted file mode 100644
index 5e2d7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_switch.png
deleted file mode 100644
index 60c9037..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index 5b9265b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index 65f8e5a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_textview.png
deleted file mode 100644
index 374faab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index eccc648..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index 0c66c37..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index 0aaf137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index 7cc6092..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 4ad2510..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 89f972b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index a1220f3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 2da7d25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 7cc6092..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 4ad2510..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index b1b16a8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index a1220f3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 2da7d25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index e65fcc7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 5d8a03a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 816073a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 3ad2f99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 2fabd8a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index b6812e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 2bebaba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 3530a91..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 51ee230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 793da54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 5a30758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 8b3aa26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 6f1064e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 5e2d7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 60c9037..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 5b9265b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 65f8e5a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 374faab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index eccc648..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 0c66c37..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 0aaf137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index e65fcc7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 5d8a03a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 816073a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 3ad2f99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 2fabd8a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index b6812e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 2bebaba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 3530a91..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 51ee230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 793da54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index 5a30758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 8b3aa26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 6f1064e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index 5e2d7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index 60c9037..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 5b9265b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 65f8e5a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index 374faab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index eccc648..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 0c66c37..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 0aaf137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_button.png
deleted file mode 100644
index 7cc6092..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index 4ad2510..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index b1b16a8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index a1220f3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index 2da7d25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index 7cc6092..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 4ad2510..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index b1b16a8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index a1220f3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 2da7d25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index e65fcc7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 5d8a03a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 816073a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 3ad2f99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 2fabd8a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index b6812e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 2bebaba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 3530a91..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 51ee230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 793da54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 5a30758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 8b3aa26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 6f1064e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 5e2d7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 60c9037..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 5b9265b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 65f8e5a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 374faab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index eccc648..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 0c66c37..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 0aaf137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index e65fcc7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index 5d8a03a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 816073a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 3ad2f99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index 2fabd8a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index b6812e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 2bebaba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 3530a91..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index 51ee230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 793da54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index 5a30758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index 8b3aa26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 6f1064e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index 5e2d7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index 60c9037..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index 5b9265b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index 65f8e5a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index 374faab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index eccc648..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index 0c66c37..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 0aaf137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_button.png
deleted file mode 100644
index 7cc6092..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index 4ad2510..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index b1b16a8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_checkbox.png
deleted file mode 100644
index a1220f3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_chronometer.png
deleted file mode 100644
index 2da7d25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_radio_button.png
deleted file mode 100644
index e65fcc7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index 5d8a03a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index 816073a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index 3ad2f99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index 2fabd8a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index b6812e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index 2bebaba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 3530a91..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index 51ee230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 793da54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_searchview.png
deleted file mode 100644
index 5a30758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index 8b3aa26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index 6f1064e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_spinner.png
deleted file mode 100644
index 5e2d7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_switch.png
deleted file mode 100644
index 60c9037..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index 5b9265b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_tabhost.png
deleted file mode 100644
index 65f8e5a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_textview.png
deleted file mode 100644
index 374faab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_timepicker.png
deleted file mode 100644
index eccc648..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index 0c66c37..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index 0aaf137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_radio_button.png
deleted file mode 100644
index e65fcc7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_radio_button_checked.png
deleted file mode 100644
index 5d8a03a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index 816073a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index 3ad2f99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_ratingbar_0.png
deleted file mode 100644
index 2fabd8a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index b6812e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index 2bebaba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index 3530a91..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_ratingbar_5.png
deleted file mode 100644
index 51ee230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index 793da54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_searchview.png
deleted file mode 100644
index 5a30758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_searchview_query.png
deleted file mode 100644
index 8b3aa26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index 6f1064e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_spinner.png
deleted file mode 100644
index 5e2d7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_switch.png
deleted file mode 100644
index 60c9037..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_switch_checked.png
deleted file mode 100644
index 5b9265b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_tabhost.png
deleted file mode 100644
index 65f8e5a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_textview.png
deleted file mode 100644
index 374faab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_timepicker.png
deleted file mode 100644
index eccc648..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_toggle_button.png
deleted file mode 100644
index 0c66c37..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index 0aaf137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_button.png
deleted file mode 100644
index 7562119..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index 62e13e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 6aade9f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index 4a7ea9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index a4b49c1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index 7562119..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 62e13e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 6aade9f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 4a7ea9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index a4b49c1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index 2693b19..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index d0b6f03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index da05890..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index d0c4d2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 00a9aab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index 06f4070..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 88725b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 303db0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index f62fa44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 45ade7b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index d4ccda7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index ae610ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index c98afae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index e2cafb8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 1d4117c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index d3df320..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 9441097..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index be0ea9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 9131bdd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 6ed70be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index e824213..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index 2693b19..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index d0b6f03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index da05890..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index d0c4d2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index 00a9aab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 06f4070..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 88725b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 303db0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index f62fa44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 45ade7b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_searchview.png
deleted file mode 100644
index d4ccda7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index ae610ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index c98afae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_spinner.png
deleted file mode 100644
index e2cafb8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_switch.png
deleted file mode 100644
index 1d4117c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index d3df320..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index 9441097..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_textview.png
deleted file mode 100644
index be0ea9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index 9131bdd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 6ed70be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index e824213..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_button.png
deleted file mode 100644
index 7562119..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_button_pressed.png
deleted file mode 100644
index 62e13e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index 6aade9f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_checkbox.png
deleted file mode 100644
index 4a7ea9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_chronometer.png
deleted file mode 100644
index a4b49c1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_radio_button.png
deleted file mode 100644
index 2693b19..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index d0b6f03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index da05890..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index d0c4d2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index 00a9aab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index 06f4070..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index 88725b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 303db0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index f62fa44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 45ade7b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_searchview.png
deleted file mode 100644
index d4ccda7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_searchview_query.png
deleted file mode 100644
index ae610ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index c98afae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_spinner.png
deleted file mode 100644
index e2cafb8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_switch.png
deleted file mode 100644
index 1d4117c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_switch_checked.png
deleted file mode 100644
index d3df320..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_tabhost.png
deleted file mode 100644
index 9441097..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_textview.png
deleted file mode 100644
index be0ea9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_timepicker.png
deleted file mode 100644
index 9131bdd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_toggle_button.png
deleted file mode 100644
index 6ed70be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index e824213..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_radio_button.png
deleted file mode 100644
index 2693b19..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_radio_button_checked.png
deleted file mode 100644
index d0b6f03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index da05890..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_radiogroup_vertical.png
deleted file mode 100644
index d0c4d2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_ratingbar_0.png
deleted file mode 100644
index 00a9aab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index 06f4070..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_ratingbar_2point5.png
deleted file mode 100644
index 88725b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index 303db0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_ratingbar_5.png
deleted file mode 100644
index f62fa44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index 45ade7b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_searchview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_searchview.png
deleted file mode 100644
index d4ccda7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_searchview_query.png
deleted file mode 100644
index ae610ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_searchview_query_hint.png
deleted file mode 100644
index c98afae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_spinner.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_spinner.png
deleted file mode 100644
index e2cafb8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_switch.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_switch.png
deleted file mode 100644
index 1d4117c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_switch_checked.png
deleted file mode 100644
index d3df320..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_tabhost.png
deleted file mode 100644
index 9441097..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_textview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_textview.png
deleted file mode 100644
index be0ea9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_timepicker.png
deleted file mode 100644
index 9131bdd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_toggle_button.png
deleted file mode 100644
index 6ed70be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_toggle_button_checked.png
deleted file mode 100644
index e824213..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_button.png
deleted file mode 100644
index 7562119..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index 62e13e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index 6aade9f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index 4a7ea9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index a4b49c1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index 7562119..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index 62e13e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index 6aade9f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index 4a7ea9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index a4b49c1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index e498e7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index f6dd1a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index 347b49a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index 4ab5dda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index fbcecc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index 3557dbf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index b512a9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index a785d43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index b3be4db..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index 86a905c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index 2693b19..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index d0b6f03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index da05890..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index d0c4d2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index 00a9aab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index 06f4070..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index 88725b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 303db0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index f62fa44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index 45ade7b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index d4ccda7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index ae610ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index c98afae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index e2cafb8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index 1d4117c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index d3df320..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index 9441097..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index be0ea9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index 9131bdd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 6ed70be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index e824213..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index 2693b19..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index d0b6f03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index da05890..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index d0c4d2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index 00a9aab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index 06f4070..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index 88725b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index 303db0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index f62fa44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index 45ade7b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_searchview.png
deleted file mode 100644
index d4ccda7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index ae610ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index c98afae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_spinner.png
deleted file mode 100644
index e2cafb8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_switch.png
deleted file mode 100644
index 1d4117c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index d3df320..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index 9441097..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_textview.png
deleted file mode 100644
index be0ea9e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index 9131bdd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 6ed70be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index e824213..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/display_info.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/display_info.png
deleted file mode 100644
index 6db0c61..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_button.png
deleted file mode 100644
index fe1fabc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_button_pressed.png
deleted file mode 100644
index 8cd13e4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_calendar_view_feb.png
deleted file mode 100644
index f61d7b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_checkbox.png
deleted file mode 100644
index 285be86..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_chronometer.png
deleted file mode 100644
index ae3ac7d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_button.png
deleted file mode 100644
index fe1fabc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_button_pressed.png
deleted file mode 100644
index 8cd13e4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index f61d7b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_checkbox.png
deleted file mode 100644
index 285be86..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_chronometer.png
deleted file mode 100644
index ae3ac7d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index fe1fabc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 8cd13e4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index f61d7b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index 285be86..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index ae3ac7d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index 8aebbb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 5d8bab9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 95a1657..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 6a2eebb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 2816574..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index c6943d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index bdba081..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 7f95415..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 196404a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 6a21e3e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index b389e1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 53d4887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 383617b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index e2e3b73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index ecdb2f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 8b0701f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index b090853..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index 0c6037a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index 9c8d036..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 3a9930e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index db6528a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index fe1fabc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 8cd13e4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index f61d7b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 285be86..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index ae3ac7d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index fe1fabc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 8cd13e4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index f61d7b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 285be86..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index ae3ac7d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index 8aebbb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 5d8bab9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 95a1657..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 6a2eebb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 2816574..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index c6943d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index bdba081..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 7f95415..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 196404a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 6a21e3e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index b389e1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 53d4887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 383617b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index e2e3b73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index ecdb2f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 8b0701f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index b090853..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 0c6037a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 9c8d036..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 3a9930e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index db6528a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index 8aebbb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 5d8bab9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 95a1657..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 6a2eebb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 2816574..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index c6943d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index bdba081..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 7f95415..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 196404a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 6a21e3e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index b389e1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 53d4887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 383617b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index e2e3b73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index ecdb2f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 8b0701f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index b090853..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index 0c6037a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 9c8d036..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 3a9930e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index db6528a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_radio_button.png
deleted file mode 100644
index 8aebbb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index 5d8bab9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 95a1657..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index 6a2eebb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index 2816574..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index c6943d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index bdba081..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 7f95415..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index 196404a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 6a21e3e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_searchview.png
deleted file mode 100644
index b389e1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_searchview_query.png
deleted file mode 100644
index 53d4887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index 383617b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_spinner.png
deleted file mode 100644
index e2e3b73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_switch.png
deleted file mode 100644
index ecdb2f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_switch_checked.png
deleted file mode 100644
index 8b0701f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_tabhost.png
deleted file mode 100644
index b090853..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_textview.png
deleted file mode 100644
index 0c6037a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_timepicker.png
deleted file mode 100644
index 9c8d036..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 3a9930e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index db6528a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index fe1fabc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 8cd13e4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index f61d7b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 285be86..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index ae3ac7d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index fe1fabc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 8cd13e4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index f61d7b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 285be86..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index ae3ac7d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index 8aebbb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 5d8bab9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 95a1657..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 6a2eebb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 2816574..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index c6943d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index bdba081..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 7f95415..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 196404a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 6a21e3e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index b389e1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 53d4887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 383617b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index e2e3b73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index ecdb2f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 8b0701f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index b090853..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 0c6037a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 9c8d036..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 3a9930e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index db6528a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index 8aebbb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 5d8bab9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 95a1657..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 6a2eebb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 2816574..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index c6943d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index bdba081..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 7f95415..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 196404a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 6a21e3e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index b389e1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 53d4887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 383617b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index e2e3b73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index ecdb2f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 8b0701f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index b090853..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index 0c6037a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 9c8d036..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 3a9930e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index db6528a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_edittext.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_button.png
deleted file mode 100644
index ab45a80..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index 3beef9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index c57376b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index b8efd58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index 442de28..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index b561600..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index 6c99988..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index 5940c12..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index 5929e0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index 9a65108..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index 88d5f5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index 61084d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0d1287d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index 97595a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index 3d2b390..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_searchview.png
deleted file mode 100644
index 40c9572..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index 26a4321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index 52c0f30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_spinner.png
deleted file mode 100644
index e8a9e99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_switch.png
deleted file mode 100644
index 8020877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index df3c898..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index 10d8137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_textview.png
deleted file mode 100644
index 97414e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index b292054..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index 215e231..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index 7b37dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_button.png
deleted file mode 100644
index ab45a80..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_button_pressed.png
deleted file mode 100644
index 3beef9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index c57376b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_checkbox.png
deleted file mode 100644
index b8efd58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_chronometer.png
deleted file mode 100644
index 442de28..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index ab45a80..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index 3beef9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index c57376b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index b8efd58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index 442de28..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index b561600..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index 6c99988..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 5940c12..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index 5929e0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index 9a65108..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 88d5f5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index 61084d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0d1287d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index 97595a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 3d2b390..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index 40c9572..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index 26a4321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index 52c0f30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index e8a9e99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index 8020877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index df3c898..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index 10d8137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index 97414e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index b292054..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index 215e231..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index 7b37dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_button.png
deleted file mode 100644
index ab45a80..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index 3beef9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index c57376b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index b8efd58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index 442de28..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index ab45a80..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 3beef9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index c57376b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index b8efd58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index 442de28..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index b561600..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 6c99988..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 5940c12..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 5929e0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 9a65108..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 88d5f5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 61084d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0d1287d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 97595a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 3d2b390..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index 40c9572..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 26a4321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 52c0f30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index e8a9e99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index 8020877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index df3c898..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index 10d8137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index 97414e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index b292054..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 215e231..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 7b37dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index ab45a80..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 3beef9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index c57376b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index b8efd58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 442de28..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index ab45a80..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 3beef9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index c57376b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index b8efd58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 442de28..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index b561600..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 6c99988..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 5940c12..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 5929e0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 9a65108..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 88d5f5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 61084d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0d1287d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 97595a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 3d2b390..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 40c9572..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 26a4321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 52c0f30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index e8a9e99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 8020877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index df3c898..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 10d8137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 97414e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index b292054..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 215e231..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 7b37dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index b561600..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 6c99988..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 5940c12..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 5929e0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 9a65108..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 88d5f5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 61084d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0d1287d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 97595a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 3d2b390..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index 40c9572..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 26a4321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 52c0f30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index e8a9e99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index 8020877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index df3c898..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 10d8137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index 97414e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index b292054..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 215e231..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 7b37dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index b561600..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index 6c99988..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 5940c12..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index 5929e0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index 9a65108..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index 88d5f5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index 61084d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0d1287d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index 97595a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 3d2b390..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_searchview.png
deleted file mode 100644
index 40c9572..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index 26a4321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index 52c0f30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_spinner.png
deleted file mode 100644
index e8a9e99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_switch.png
deleted file mode 100644
index 8020877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index df3c898..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index 10d8137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_textview.png
deleted file mode 100644
index 97414e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index b292054..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index 215e231..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index 7b37dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index ab45a80..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 3beef9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index c57376b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index b8efd58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 442de28..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index ab45a80..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 3beef9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index c57376b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index b8efd58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 442de28..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index b561600..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 6c99988..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 5940c12..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 5929e0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 9a65108..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 88d5f5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 61084d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0d1287d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 97595a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 3d2b390..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 40c9572..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 26a4321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 52c0f30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index e8a9e99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 8020877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index df3c898..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 10d8137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 97414e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index b292054..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 215e231..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 7b37dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index b561600..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 6c99988..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 5940c12..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 5929e0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 9a65108..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index 88d5f5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 61084d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0d1287d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 97595a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 3d2b390..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index 40c9572..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 26a4321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 52c0f30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index e8a9e99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index 8020877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index df3c898..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 10d8137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index 97414e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index b292054..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 215e231..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 7b37dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_button.png
deleted file mode 100644
index ab45a80..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index 3beef9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index c57376b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index b8efd58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index 442de28..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index ab45a80..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 3beef9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index c57376b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index b8efd58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 442de28..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index b561600..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 6c99988..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 5940c12..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 5929e0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 9a65108..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index 88d5f5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 61084d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0d1287d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 97595a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 3d2b390..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 40c9572..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 26a4321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 52c0f30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index e8a9e99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 8020877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index df3c898..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 10d8137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 97414e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index b292054..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 215e231..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 7b37dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index b561600..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index 6c99988..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 5940c12..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 5929e0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index 9a65108..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 88d5f5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 61084d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0d1287d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index 97595a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 3d2b390..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index 40c9572..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index 26a4321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 52c0f30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index e8a9e99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index 8020877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index df3c898..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index 10d8137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index 97414e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index b292054..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index 215e231..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 7b37dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_button.png
deleted file mode 100644
index ab45a80..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index 3beef9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index c57376b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_checkbox.png
deleted file mode 100644
index b8efd58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_chronometer.png
deleted file mode 100644
index 442de28..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_radio_button.png
deleted file mode 100644
index b561600..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index 6c99988..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index 5940c12..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index 5929e0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index 9a65108..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index 88d5f5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index 61084d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0d1287d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index 97595a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 3d2b390..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_searchview.png
deleted file mode 100644
index 40c9572..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index 26a4321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index 52c0f30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_spinner.png
deleted file mode 100644
index e8a9e99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_switch.png
deleted file mode 100644
index 8020877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index df3c898..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_tabhost.png
deleted file mode 100644
index 10d8137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_textview.png
deleted file mode 100644
index 97414e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_timepicker.png
deleted file mode 100644
index b292054..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index 215e231..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index 7b37dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_radio_button.png
deleted file mode 100644
index b561600..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_radio_button_checked.png
deleted file mode 100644
index 6c99988..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index 5940c12..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index 5929e0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_ratingbar_0.png
deleted file mode 100644
index 9a65108..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index 88d5f5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index 61084d5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0d1287d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_ratingbar_5.png
deleted file mode 100644
index 97595a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index 3d2b390..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_searchview.png
deleted file mode 100644
index 40c9572..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_searchview_query.png
deleted file mode 100644
index 26a4321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index 52c0f30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_spinner.png
deleted file mode 100644
index e8a9e99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_switch.png
deleted file mode 100644
index 8020877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_switch_checked.png
deleted file mode 100644
index df3c898..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_tabhost.png
deleted file mode 100644
index 10d8137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_textview.png
deleted file mode 100644
index 97414e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_timepicker.png
deleted file mode 100644
index b292054..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_toggle_button.png
deleted file mode 100644
index 215e231..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index 7b37dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_button.png
deleted file mode 100644
index fe1fabc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index 8cd13e4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index f61d7b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index 285be86..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index ae3ac7d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index fe1fabc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 8cd13e4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index f61d7b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 285be86..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index ae3ac7d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index 8aebbb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 5d8bab9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 95a1657..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 6a2eebb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 2816574..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index c6943d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index bdba081..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 7f95415..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 196404a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 6a21e3e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index b389e1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 53d4887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 383617b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index e2e3b73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index ecdb2f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 8b0701f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index b090853..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 0c6037a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 9c8d036..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 3a9930e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index db6528a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index 8aebbb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index 5d8bab9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 95a1657..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 6a2eebb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index 2816574..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index c6943d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index bdba081..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 7f95415..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index 196404a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 6a21e3e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_searchview.png
deleted file mode 100644
index b389e1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index 53d4887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 383617b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_spinner.png
deleted file mode 100644
index e2e3b73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_switch.png
deleted file mode 100644
index ecdb2f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index 8b0701f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index b090853..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_textview.png
deleted file mode 100644
index 0c6037a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index 9c8d036..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 3a9930e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index db6528a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_button.png
deleted file mode 100644
index fe1fabc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_button_pressed.png
deleted file mode 100644
index 8cd13e4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index f61d7b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_checkbox.png
deleted file mode 100644
index 285be86..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_chronometer.png
deleted file mode 100644
index ae3ac7d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_radio_button.png
deleted file mode 100644
index 8aebbb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index 5d8bab9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index 95a1657..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index 6a2eebb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index 2816574..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index c6943d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index bdba081..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 7f95415..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index 196404a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 6a21e3e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_searchview.png
deleted file mode 100644
index b389e1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_searchview_query.png
deleted file mode 100644
index 53d4887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index 383617b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_spinner.png
deleted file mode 100644
index e2e3b73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_switch.png
deleted file mode 100644
index ecdb2f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_switch_checked.png
deleted file mode 100644
index 8b0701f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_tabhost.png
deleted file mode 100644
index b090853..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_textview.png
deleted file mode 100644
index 0c6037a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_timepicker.png
deleted file mode 100644
index 9c8d036..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_toggle_button.png
deleted file mode 100644
index 3a9930e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index db6528a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_radio_button.png
deleted file mode 100644
index 8aebbb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_radio_button_checked.png
deleted file mode 100644
index 5d8bab9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index 95a1657..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_radiogroup_vertical.png
deleted file mode 100644
index 6a2eebb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_ratingbar_0.png
deleted file mode 100644
index 2816574..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index c6943d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_ratingbar_2point5.png
deleted file mode 100644
index bdba081..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index 7f95415..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_ratingbar_5.png
deleted file mode 100644
index 196404a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index 6a21e3e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_searchview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_searchview.png
deleted file mode 100644
index b389e1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_searchview_query.png
deleted file mode 100644
index 53d4887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_searchview_query_hint.png
deleted file mode 100644
index 383617b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_spinner.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_spinner.png
deleted file mode 100644
index e2e3b73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_switch.png
deleted file mode 100644
index ecdb2f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_switch_checked.png
deleted file mode 100644
index 8b0701f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_tabhost.png
deleted file mode 100644
index b090853..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_textview.png
deleted file mode 100644
index 0c6037a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_timepicker.png
deleted file mode 100644
index 9c8d036..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_toggle_button.png
deleted file mode 100644
index 3a9930e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_toggle_button_checked.png
deleted file mode 100644
index db6528a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_button.png
deleted file mode 100644
index fe1fabc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index 8cd13e4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index f61d7b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index 285be86..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index ae3ac7d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index fe1fabc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index 8cd13e4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index f61d7b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index 285be86..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index ae3ac7d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index 8aebbb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index 5d8bab9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index 95a1657..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index 6a2eebb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index 2816574..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index c6943d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index bdba081..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 7f95415..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index 196404a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index 6a21e3e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index b389e1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index 53d4887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index 383617b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index e2e3b73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index ecdb2f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index 8b0701f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index b090853..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index 0c6037a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index 9c8d036..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 3a9930e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index db6528a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index 8aebbb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index 5d8bab9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index 95a1657..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index 6a2eebb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index 2816574..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index c6943d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index bdba081..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index 7f95415..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index 196404a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index 6a21e3e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_searchview.png
deleted file mode 100644
index b389e1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index 53d4887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index 383617b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_spinner.png
deleted file mode 100644
index e2e3b73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_switch.png
deleted file mode 100644
index ecdb2f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index 8b0701f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index b090853..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_textview.png
deleted file mode 100644
index 0c6037a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index 9c8d036..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 3a9930e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index db6528a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/display_info.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/display_info.png
deleted file mode 100644
index 0ebb8c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_button.png
deleted file mode 100644
index f3db6e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_button_pressed.png
deleted file mode 100644
index 4f52d2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_calendar_view_feb.png
deleted file mode 100644
index 8048081..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_checkbox.png
deleted file mode 100644
index a71885d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_chronometer.png
deleted file mode 100644
index 507bf4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_button.png
deleted file mode 100644
index f3db6e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_button_pressed.png
deleted file mode 100644
index 4f52d2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index 8048081..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_checkbox.png
deleted file mode 100644
index a71885d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_chronometer.png
deleted file mode 100644
index 507bf4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index f3db6e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 4f52d2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 8048081..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index a71885d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index 507bf4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index bdb0ba5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index fbdc6bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index d8e074f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 3a7fd63..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 517f3d6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index c31df16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index d184a4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index e4fcb80..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index ce1c817..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index f9f41d4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index 14df18c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 908966b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 7c1ec1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index fc9e20f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index bcba3ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 399fac9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index 90cd494..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index 177c26e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index 1b5b0eb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 7bacc13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index f8329b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index f3db6e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 4f52d2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 8048081..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index a71885d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 507bf4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index f3db6e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 4f52d2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 8048081..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index a71885d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 507bf4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index bdb0ba5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index fbdc6bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index d8e074f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 3a7fd63..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 517f3d6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index c31df16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index d184a4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index e4fcb80..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index ce1c817..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index f9f41d4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 14df18c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 908966b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 7c1ec1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index fc9e20f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index bcba3ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 399fac9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 90cd494..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 177c26e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 1b5b0eb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 7bacc13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index f8329b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index bdb0ba5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index fbdc6bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index d8e074f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 3a7fd63..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 517f3d6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index c31df16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index d184a4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index e4fcb80..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index ce1c817..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index f9f41d4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index 14df18c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 908966b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 7c1ec1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index fc9e20f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index bcba3ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 399fac9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 90cd494..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index 177c26e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 1b5b0eb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 7bacc13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index f8329b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_radio_button.png
deleted file mode 100644
index bdb0ba5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index fbdc6bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index d8e074f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index 3a7fd63..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index 517f3d6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index c31df16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index d184a4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index e4fcb80..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index ce1c817..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index f9f41d4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_searchview.png
deleted file mode 100644
index 14df18c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_searchview_query.png
deleted file mode 100644
index 908966b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index 7c1ec1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_spinner.png
deleted file mode 100644
index fc9e20f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_switch.png
deleted file mode 100644
index bcba3ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_switch_checked.png
deleted file mode 100644
index 399fac9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_tabhost.png
deleted file mode 100644
index 90cd494..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_textview.png
deleted file mode 100644
index 177c26e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_timepicker.png
deleted file mode 100644
index 1b5b0eb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 7bacc13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index f8329b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index f3db6e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 4f52d2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 8048081..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index a71885d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 507bf4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index f3db6e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 4f52d2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 8048081..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index a71885d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 507bf4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index bdb0ba5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index fbdc6bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index d8e074f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 3a7fd63..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 517f3d6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index c31df16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index d184a4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index e4fcb80..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index ce1c817..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index f9f41d4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 14df18c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 908966b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 7c1ec1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index fc9e20f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index bcba3ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 399fac9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 90cd494..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 177c26e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 1b5b0eb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 7bacc13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index f8329b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index bdb0ba5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index fbdc6bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index d8e074f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 3a7fd63..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 517f3d6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index c31df16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index d184a4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index e4fcb80..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index ce1c817..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index f9f41d4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index 14df18c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 908966b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 7c1ec1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index fc9e20f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index bcba3ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 399fac9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 90cd494..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index 177c26e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 1b5b0eb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 7bacc13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index f8329b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_button.png
deleted file mode 100644
index d630b9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index 74e8fe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index 02a117c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index 45862a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index af02fde..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index cdaf449..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index 69a9a7d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index ffb560e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index fd215cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index 340ff5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index 60c731e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index 260866a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ba8025..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index c1f38bd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index c981c8a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_searchview.png
deleted file mode 100644
index 228b1fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index a11d860..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index 93dbee6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_spinner.png
deleted file mode 100644
index 39617cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_switch.png
deleted file mode 100644
index c87a53a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index 571f357..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index 8660a44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_textview.png
deleted file mode 100644
index 8eb8556..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index 8a1c51e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index 8e2dac0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index 516fe20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_button.png
deleted file mode 100644
index d630b9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_button_pressed.png
deleted file mode 100644
index 74e8fe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index 02a117c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_checkbox.png
deleted file mode 100644
index 45862a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_chronometer.png
deleted file mode 100644
index af02fde..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index d630b9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index 74e8fe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index 02a117c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index 45862a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index af02fde..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index cdaf449..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index 69a9a7d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index ffb560e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index fd215cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index 340ff5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 60c731e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index 260866a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ba8025..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index c1f38bd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c981c8a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index 228b1fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index a11d860..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index 93dbee6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index 39617cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index c87a53a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index 571f357..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index 8660a44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index 8eb8556..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index 8a1c51e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index 8e2dac0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index 516fe20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_button.png
deleted file mode 100644
index d630b9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index 74e8fe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index 02a117c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index 45862a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index af02fde..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index d630b9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 74e8fe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 02a117c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index 45862a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index af02fde..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index cdaf449..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 69a9a7d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index ffb560e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index fd215cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 340ff5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 60c731e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 260866a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ba8025..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index c1f38bd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index c981c8a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index 228b1fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index a11d860..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 93dbee6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index 39617cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index c87a53a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 571f357..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index 8660a44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index 8eb8556..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index 8a1c51e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 8e2dac0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 516fe20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index d630b9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 74e8fe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 02a117c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 45862a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index af02fde..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index d630b9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 74e8fe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 02a117c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 45862a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index af02fde..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index cdaf449..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 69a9a7d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index ffb560e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index fd215cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 340ff5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 60c731e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 260866a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ba8025..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index c1f38bd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index c981c8a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 228b1fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index a11d860..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 93dbee6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 39617cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index c87a53a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 571f357..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 8660a44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 8eb8556..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 8a1c51e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 8e2dac0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 516fe20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index cdaf449..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 69a9a7d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index ffb560e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index fd215cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 340ff5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 60c731e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 260866a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ba8025..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index c1f38bd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c981c8a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index 228b1fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index a11d860..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 93dbee6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index 39617cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index c87a53a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 571f357..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 8660a44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index 8eb8556..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 8a1c51e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 8e2dac0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 516fe20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index cdaf449..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index 69a9a7d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index ffb560e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index fd215cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index 340ff5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index 60c731e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index 260866a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ba8025..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index c1f38bd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index c981c8a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_searchview.png
deleted file mode 100644
index 228b1fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index a11d860..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index 93dbee6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_spinner.png
deleted file mode 100644
index 39617cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_switch.png
deleted file mode 100644
index c87a53a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index 571f357..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index 8660a44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_textview.png
deleted file mode 100644
index 8eb8556..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index 8a1c51e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index 8e2dac0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index 516fe20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index d630b9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 74e8fe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 02a117c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 45862a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index af02fde..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index d630b9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 74e8fe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 02a117c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 45862a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index af02fde..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index cdaf449..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 69a9a7d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index ffb560e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index fd215cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 340ff5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 60c731e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 260866a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ba8025..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index c1f38bd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c981c8a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 228b1fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index a11d860..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 93dbee6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 39617cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index c87a53a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 571f357..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 8660a44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 8eb8556..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 8a1c51e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 8e2dac0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 516fe20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index cdaf449..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 69a9a7d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index ffb560e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index fd215cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 340ff5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index 60c731e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 260866a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ba8025..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index c1f38bd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index c981c8a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index 228b1fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index a11d860..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 93dbee6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index 39617cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index c87a53a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 571f357..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 8660a44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index 8eb8556..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 8a1c51e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 8e2dac0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 516fe20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_button.png
deleted file mode 100644
index d630b9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index 74e8fe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 02a117c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index 45862a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index af02fde..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index d630b9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 74e8fe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 02a117c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 45862a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index af02fde..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index cdaf449..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 69a9a7d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index ffb560e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index fd215cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 340ff5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index 60c731e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 260866a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ba8025..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index c1f38bd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index c981c8a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 228b1fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index a11d860..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 93dbee6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 39617cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index c87a53a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 571f357..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 8660a44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 8eb8556..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 8a1c51e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 8e2dac0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 516fe20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index cdaf449..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index 69a9a7d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index ffb560e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index fd215cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index 340ff5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 60c731e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 260866a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ba8025..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index c1f38bd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c981c8a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index 228b1fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index a11d860..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 93dbee6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index 39617cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index c87a53a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index 571f357..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index 8660a44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index 8eb8556..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index 8a1c51e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index 8e2dac0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 516fe20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_button.png
deleted file mode 100644
index d630b9d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index 74e8fe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index 02a117c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_checkbox.png
deleted file mode 100644
index 45862a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_chronometer.png
deleted file mode 100644
index af02fde..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_radio_button.png
deleted file mode 100644
index cdaf449..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index 69a9a7d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index ffb560e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index fd215cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index 340ff5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index 60c731e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index 260866a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ba8025..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index c1f38bd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index c981c8a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_searchview.png
deleted file mode 100644
index 228b1fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index a11d860..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index 93dbee6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_spinner.png
deleted file mode 100644
index 39617cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_switch.png
deleted file mode 100644
index c87a53a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index 571f357..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_tabhost.png
deleted file mode 100644
index 8660a44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_textview.png
deleted file mode 100644
index 8eb8556..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_timepicker.png
deleted file mode 100644
index 8a1c51e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index 8e2dac0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index 516fe20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_radio_button.png
deleted file mode 100644
index cdaf449..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_radio_button_checked.png
deleted file mode 100644
index 69a9a7d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index ffb560e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index fd215cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_ratingbar_0.png
deleted file mode 100644
index 340ff5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index 60c731e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index 260866a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ba8025..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_ratingbar_5.png
deleted file mode 100644
index c1f38bd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index c981c8a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_searchview.png
deleted file mode 100644
index 228b1fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_searchview_query.png
deleted file mode 100644
index a11d860..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index 93dbee6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_spinner.png
deleted file mode 100644
index 39617cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_switch.png
deleted file mode 100644
index c87a53a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_switch_checked.png
deleted file mode 100644
index 571f357..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_tabhost.png
deleted file mode 100644
index 8660a44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_textview.png
deleted file mode 100644
index 8eb8556..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_timepicker.png
deleted file mode 100644
index 8a1c51e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_toggle_button.png
deleted file mode 100644
index 8e2dac0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index 516fe20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_button.png
deleted file mode 100644
index f3db6e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index 4f52d2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 8048081..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index a71885d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index 507bf4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index f3db6e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 4f52d2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 8048081..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index a71885d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 507bf4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index bdb0ba5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index fbdc6bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index d8e074f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 3a7fd63..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 517f3d6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index c31df16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index d184a4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index e4fcb80..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index ce1c817..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index f9f41d4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 14df18c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 908966b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 7c1ec1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index fc9e20f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index bcba3ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 399fac9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 90cd494..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 177c26e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 1b5b0eb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 7bacc13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index f8329b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index bdb0ba5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index fbdc6bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index d8e074f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 3a7fd63..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index 517f3d6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index c31df16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index d184a4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index e4fcb80..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index ce1c817..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index f9f41d4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_searchview.png
deleted file mode 100644
index 14df18c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index 908966b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 7c1ec1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_spinner.png
deleted file mode 100644
index fc9e20f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_switch.png
deleted file mode 100644
index bcba3ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index 399fac9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index 90cd494..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_textview.png
deleted file mode 100644
index 177c26e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index 1b5b0eb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 7bacc13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index f8329b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_button.png
deleted file mode 100644
index f3db6e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_button_pressed.png
deleted file mode 100644
index 4f52d2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index 8048081..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_checkbox.png
deleted file mode 100644
index a71885d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_chronometer.png
deleted file mode 100644
index 507bf4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_radio_button.png
deleted file mode 100644
index bdb0ba5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index fbdc6bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index d8e074f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index 3a7fd63..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index 517f3d6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index c31df16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index d184a4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index e4fcb80..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index ce1c817..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index f9f41d4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_searchview.png
deleted file mode 100644
index 14df18c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_searchview_query.png
deleted file mode 100644
index 908966b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index 7c1ec1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_spinner.png
deleted file mode 100644
index fc9e20f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_switch.png
deleted file mode 100644
index bcba3ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_switch_checked.png
deleted file mode 100644
index 399fac9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_tabhost.png
deleted file mode 100644
index 90cd494..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_textview.png
deleted file mode 100644
index 177c26e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_timepicker.png
deleted file mode 100644
index 1b5b0eb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_toggle_button.png
deleted file mode 100644
index 7bacc13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index f8329b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_radio_button.png
deleted file mode 100644
index bdb0ba5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_radio_button_checked.png
deleted file mode 100644
index fbdc6bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index d8e074f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_radiogroup_vertical.png
deleted file mode 100644
index 3a7fd63..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_ratingbar_0.png
deleted file mode 100644
index 517f3d6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index c31df16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_ratingbar_2point5.png
deleted file mode 100644
index d184a4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index e4fcb80..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_ratingbar_5.png
deleted file mode 100644
index ce1c817..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index f9f41d4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_searchview.png
deleted file mode 100644
index 14df18c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_searchview_query.png
deleted file mode 100644
index 908966b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_searchview_query_hint.png
deleted file mode 100644
index 7c1ec1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_spinner.png
deleted file mode 100644
index fc9e20f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_switch.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_switch.png
deleted file mode 100644
index bcba3ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_switch_checked.png
deleted file mode 100644
index 399fac9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_tabhost.png
deleted file mode 100644
index 90cd494..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_textview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_textview.png
deleted file mode 100644
index 177c26e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_timepicker.png
deleted file mode 100644
index 1b5b0eb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_toggle_button.png
deleted file mode 100644
index 7bacc13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_toggle_button_checked.png
deleted file mode 100644
index f8329b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_button.png
deleted file mode 100644
index f3db6e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index 4f52d2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index 8048081..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index a71885d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index 507bf4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index f3db6e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index 4f52d2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index 8048081..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index a71885d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index 507bf4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index bdb0ba5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index fbdc6bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index d8e074f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index 3a7fd63..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index 517f3d6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index c31df16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index d184a4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index e4fcb80..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index ce1c817..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index f9f41d4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index 14df18c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index 908966b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index 7c1ec1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index fc9e20f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index bcba3ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index 399fac9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index 90cd494..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index 177c26e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index 1b5b0eb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 7bacc13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index f8329b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index bdb0ba5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index fbdc6bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index d8e074f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index 3a7fd63..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index 517f3d6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index c31df16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index d184a4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index e4fcb80..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index ce1c817..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index f9f41d4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_searchview.png
deleted file mode 100644
index 14df18c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index 908966b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index 7c1ec1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_spinner.png
deleted file mode 100644
index fc9e20f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_switch.png
deleted file mode 100644
index bcba3ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index 399fac9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index 90cd494..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_textview.png
deleted file mode 100644
index 177c26e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index 1b5b0eb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 7bacc13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index f8329b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_button.png
deleted file mode 100644
index fe1fabc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_button_pressed.png
deleted file mode 100644
index 8cd13e4..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_calendar_view.png
deleted file mode 100644
index 643b5e0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_calendar_view_feb.png
deleted file mode 100644
index 9c505f8..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-tvdpi/holo_checkbox.png
deleted file mode 100644
index 285be86..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-tvdpi/holo_chronometer.png
deleted file mode 100644
index ae3ac7d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_button.png
deleted file mode 100644
index fe1fabc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_button_pressed.png
deleted file mode 100644
index 8cd13e4..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_calendar_view.png
deleted file mode 100644
index 0beff09..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index 568bb25..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_checkbox.png
deleted file mode 100644
index 285be86..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_chronometer.png
deleted file mode 100644
index ae3ac7d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index fe1fabc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 8cd13e4..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 0beff09..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 568bb25..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index 285be86..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index ae3ac7d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index 8aebbb5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 5d8bab9..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 95a1657..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 6a2eebb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 2816574..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index c6943d2..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index bdba081..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 7f95415..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 196404a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 6a21e3e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index fbf4ca0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 53d4887..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 383617b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index e2e3b73..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index ecdb2f0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 8b0701f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index dcd67d7..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index 0c6037a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index 9c8d036..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 3a9930e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index db6528a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index fe1fabc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 8cd13e4..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 643b5e0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 9c505f8..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 285be86..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index ae3ac7d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index fe1fabc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 8cd13e4..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 643b5e0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 9c505f8..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 285be86..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index ae3ac7d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index 8aebbb5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 5d8bab9..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 95a1657..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 6a2eebb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 2816574..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index c6943d2..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index bdba081..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 7f95415..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 196404a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 6a21e3e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index fbf4ca0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 53d4887..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 383617b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index e2e3b73..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index ecdb2f0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 8b0701f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index dcd67d7..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 0c6037a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 9c8d036..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 3a9930e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index db6528a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index 8aebbb5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 5d8bab9..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 95a1657..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 6a2eebb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 2816574..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index c6943d2..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index bdba081..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 7f95415..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 196404a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 6a21e3e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index fbf4ca0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 53d4887..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 383617b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index e2e3b73..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index ecdb2f0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 8b0701f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index dcd67d7..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index 0c6037a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 9c8d036..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 3a9930e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index db6528a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_radio_button.png
deleted file mode 100644
index 8aebbb5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index 5d8bab9..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 95a1657..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index 6a2eebb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index 2816574..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index c6943d2..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index bdba081..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 7f95415..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index 196404a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 6a21e3e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_searchview.png
deleted file mode 100644
index fbf4ca0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_searchview_query.png
deleted file mode 100644
index 53d4887..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index 383617b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_spinner.png
deleted file mode 100644
index e2e3b73..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_switch.png
deleted file mode 100644
index ecdb2f0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_switch_checked.png
deleted file mode 100644
index 8b0701f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_tabhost.png
deleted file mode 100644
index dcd67d7..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_textview.png
deleted file mode 100644
index 0c6037a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_timepicker.png
deleted file mode 100644
index 9c8d036..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 3a9930e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index db6528a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index fe1fabc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 8cd13e4..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 643b5e0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 9c505f8..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 285be86..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index ae3ac7d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index fe1fabc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 8cd13e4..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 643b5e0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 9c505f8..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 285be86..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index ae3ac7d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index 8aebbb5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 5d8bab9..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 95a1657..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 6a2eebb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 2816574..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index c6943d2..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index bdba081..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 7f95415..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 196404a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 6a21e3e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index fbf4ca0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 53d4887..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 383617b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index e2e3b73..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index ecdb2f0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 8b0701f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index dcd67d7..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 0c6037a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 9c8d036..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 3a9930e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index db6528a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index 8aebbb5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 5d8bab9..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 95a1657..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 6a2eebb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 2816574..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index c6943d2..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index bdba081..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 7f95415..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 196404a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 6a21e3e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index fbf4ca0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 53d4887..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 383617b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index e2e3b73..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index ecdb2f0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 8b0701f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index dcd67d7..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index 0c6037a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 9c8d036..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 3a9930e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index db6528a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_edittext.png b/tests/tests/holo/res/drawable-tvdpi/holo_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_button.png
deleted file mode 100644
index ab45a80..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index 3beef9d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index 8990fed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index 8fd6b84..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index b8efd58..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index 442de28..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index b561600..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index 6c99988..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index 5940c12..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index 5929e0d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index 9a65108..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index 88d5f5e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index 61084d5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0d1287d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index 97595a3..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index 3d2b390..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_searchview.png
deleted file mode 100644
index 29d37de..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index 26a4321..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index 52c0f30..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_spinner.png
deleted file mode 100644
index e8a9e99..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_switch.png
deleted file mode 100644
index 8020877..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index df3c898..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index 207b560..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_textview.png
deleted file mode 100644
index 97414e6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index b292054..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index 215e231..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index 7b37dd0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_button.png
deleted file mode 100644
index ab45a80..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_button_pressed.png
deleted file mode 100644
index 3beef9d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_calendar_view.png
deleted file mode 100644
index 8990fed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index 8fd6b84..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_checkbox.png
deleted file mode 100644
index b8efd58..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_chronometer.png
deleted file mode 100644
index 442de28..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index ab45a80..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index 3beef9d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index 8990fed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index 8fd6b84..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index b8efd58..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index 442de28..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index b561600..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index 6c99988..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 5940c12..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index 5929e0d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index 9a65108..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 88d5f5e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index 61084d5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0d1287d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index 97595a3..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 3d2b390..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index 29d37de..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index 26a4321..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index 52c0f30..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index e8a9e99..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index 8020877..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index df3c898..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index 207b560..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index 97414e6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index b292054..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index 215e231..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index 7b37dd0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_button.png
deleted file mode 100644
index ab45a80..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index 3beef9d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index 9b0c1cd..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index f95740f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index b8efd58..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index 442de28..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index ab45a80..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 3beef9d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 9b0c1cd..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index f95740f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index b8efd58..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index 442de28..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index b561600..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 6c99988..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 5940c12..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 5929e0d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 9a65108..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 88d5f5e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 61084d5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0d1287d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 97595a3..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 3d2b390..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index 29d37de..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 26a4321..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 52c0f30..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index e8a9e99..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index 8020877..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index df3c898..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index 207b560..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index 97414e6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index b292054..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 215e231..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 7b37dd0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index ab45a80..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 3beef9d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 8990fed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 8fd6b84..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index b8efd58..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 442de28..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index ab45a80..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 3beef9d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 8990fed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 8fd6b84..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index b8efd58..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 442de28..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index b561600..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 6c99988..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 5940c12..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 5929e0d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 9a65108..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 88d5f5e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 61084d5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0d1287d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 97595a3..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 3d2b390..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 29d37de..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 26a4321..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 52c0f30..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index e8a9e99..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 8020877..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index df3c898..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 207b560..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 97414e6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index b292054..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 215e231..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 7b37dd0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index b561600..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 6c99988..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 5940c12..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 5929e0d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 9a65108..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 88d5f5e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 61084d5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0d1287d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 97595a3..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 3d2b390..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index 29d37de..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 26a4321..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 52c0f30..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index e8a9e99..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index 8020877..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index df3c898..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 207b560..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index 97414e6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index b292054..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 215e231..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 7b37dd0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index b561600..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index 6c99988..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 5940c12..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index 5929e0d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index 9a65108..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index 88d5f5e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index 61084d5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0d1287d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index 97595a3..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 3d2b390..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_searchview.png
deleted file mode 100644
index 29d37de..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index 26a4321..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index 52c0f30..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_spinner.png
deleted file mode 100644
index e8a9e99..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_switch.png
deleted file mode 100644
index 8020877..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index df3c898..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index 207b560..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_textview.png
deleted file mode 100644
index 97414e6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index b292054..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index 215e231..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index 7b37dd0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index ab45a80..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 3beef9d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 8990fed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 8fd6b84..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index b8efd58..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 442de28..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index ab45a80..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 3beef9d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 8990fed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 8fd6b84..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index b8efd58..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 442de28..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index b561600..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 6c99988..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 5940c12..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 5929e0d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 9a65108..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 88d5f5e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 61084d5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0d1287d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 97595a3..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 3d2b390..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 29d37de..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 26a4321..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 52c0f30..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index e8a9e99..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 8020877..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index df3c898..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 207b560..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 97414e6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index b292054..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 215e231..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 7b37dd0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index b561600..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 6c99988..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 5940c12..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 5929e0d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 9a65108..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index 88d5f5e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 61084d5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0d1287d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 97595a3..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 3d2b390..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index 29d37de..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 26a4321..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 52c0f30..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index e8a9e99..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index 8020877..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index df3c898..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 207b560..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index 97414e6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index b292054..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 215e231..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 7b37dd0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_button.png
deleted file mode 100644
index ab45a80..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index 3beef9d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index 8990fed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 8fd6b84..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index b8efd58..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index 442de28..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index ab45a80..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 3beef9d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index dde6d9e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index c57376b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index b8efd58..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 442de28..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index b561600..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 6c99988..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 5940c12..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 5929e0d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 9a65108..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index 88d5f5e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 61084d5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0d1287d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 97595a3..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 3d2b390..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 29d37de..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 26a4321..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 52c0f30..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index e8a9e99..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 8020877..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index df3c898..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 207b560..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 97414e6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index b292054..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 215e231..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 7b37dd0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index b561600..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index 6c99988..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 5940c12..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 5929e0d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index 9a65108..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 88d5f5e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 61084d5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0d1287d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index 97595a3..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 3d2b390..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index 29d37de..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index 26a4321..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 52c0f30..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index e8a9e99..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index 8020877..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index df3c898..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index 207b560..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index 97414e6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index b292054..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index 215e231..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 7b37dd0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_button.png
deleted file mode 100644
index ab45a80..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index 3beef9d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index dde6d9e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index 8fd6b84..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_checkbox.png
deleted file mode 100644
index b8efd58..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_chronometer.png
deleted file mode 100644
index 442de28..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_radio_button.png
deleted file mode 100644
index b561600..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index 6c99988..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index 5940c12..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index 5929e0d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index 9a65108..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index 88d5f5e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index 61084d5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0d1287d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index 97595a3..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 3d2b390..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_searchview.png
deleted file mode 100644
index 29d37de..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index 26a4321..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index 52c0f30..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_spinner.png
deleted file mode 100644
index e8a9e99..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_switch.png
deleted file mode 100644
index 8020877..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index df3c898..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_tabhost.png
deleted file mode 100644
index 207b560..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_textview.png
deleted file mode 100644
index 97414e6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_timepicker.png
deleted file mode 100644
index b292054..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index 215e231..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index 7b37dd0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_radio_button.png
deleted file mode 100644
index b561600..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_radio_button_checked.png
deleted file mode 100644
index 6c99988..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index 5940c12..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index 5929e0d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_ratingbar_0.png
deleted file mode 100644
index 9a65108..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index 88d5f5e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index 61084d5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0d1287d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_ratingbar_5.png
deleted file mode 100644
index 97595a3..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index 3d2b390..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_searchview.png
deleted file mode 100644
index 29d37de..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_searchview_query.png
deleted file mode 100644
index 26a4321..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index 52c0f30..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_spinner.png
deleted file mode 100644
index e8a9e99..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_switch.png
deleted file mode 100644
index 8020877..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_switch_checked.png
deleted file mode 100644
index df3c898..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_tabhost.png
deleted file mode 100644
index 207b560..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_textview.png
deleted file mode 100644
index 97414e6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_timepicker.png
deleted file mode 100644
index b292054..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_toggle_button.png
deleted file mode 100644
index 215e231..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index 7b37dd0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_button.png
deleted file mode 100644
index fe1fabc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index 8cd13e4..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index 5c257cb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 9c505f8..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index 285be86..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index ae3ac7d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index fe1fabc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 8cd13e4..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 5c257cb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index f61d7b7..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 285be86..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index ae3ac7d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index 8aebbb5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 5d8bab9..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 95a1657..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 6a2eebb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 2816574..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index c6943d2..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index bdba081..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 7f95415..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 196404a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 6a21e3e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index fbf4ca0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 53d4887..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 383617b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index e2e3b73..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index ecdb2f0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 8b0701f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index dcd67d7..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 0c6037a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 9c8d036..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 3a9930e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index db6528a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index 8aebbb5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index 5d8bab9..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 95a1657..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 6a2eebb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index 2816574..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index c6943d2..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index bdba081..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 7f95415..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index 196404a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 6a21e3e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_searchview.png
deleted file mode 100644
index fbf4ca0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index 53d4887..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 383617b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_spinner.png
deleted file mode 100644
index e2e3b73..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_switch.png
deleted file mode 100644
index ecdb2f0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index 8b0701f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index dcd67d7..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_textview.png
deleted file mode 100644
index 0c6037a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index 9c8d036..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 3a9930e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index db6528a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_button.png
deleted file mode 100644
index fe1fabc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_button_pressed.png
deleted file mode 100644
index 8cd13e4..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_calendar_view.png
deleted file mode 100644
index 5c257cb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index f61d7b7..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_checkbox.png
deleted file mode 100644
index 285be86..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_chronometer.png
deleted file mode 100644
index ae3ac7d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_radio_button.png
deleted file mode 100644
index 8aebbb5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index 5d8bab9..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index 95a1657..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index 6a2eebb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index 2816574..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index c6943d2..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index bdba081..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 7f95415..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index 196404a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 6a21e3e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_searchview.png
deleted file mode 100644
index fbf4ca0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_searchview_query.png
deleted file mode 100644
index 53d4887..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index 383617b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_spinner.png
deleted file mode 100644
index e2e3b73..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_switch.png
deleted file mode 100644
index ecdb2f0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_switch_checked.png
deleted file mode 100644
index 8b0701f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_tabhost.png
deleted file mode 100644
index dcd67d7..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_textview.png
deleted file mode 100644
index 0c6037a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_timepicker.png
deleted file mode 100644
index 9c8d036..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_toggle_button.png
deleted file mode 100644
index 3a9930e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index db6528a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-tvdpi/holo_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_radio_button.png
deleted file mode 100644
index 8aebbb5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_radio_button_checked.png
deleted file mode 100644
index 5d8bab9..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-tvdpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index 95a1657..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-tvdpi/holo_radiogroup_vertical.png
deleted file mode 100644
index 6a2eebb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_ratingbar_0.png
deleted file mode 100644
index 2816574..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index c6943d2..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-tvdpi/holo_ratingbar_2point5.png
deleted file mode 100644
index bdba081..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index 7f95415..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-tvdpi/holo_ratingbar_5.png
deleted file mode 100644
index 196404a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index 6a21e3e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_searchview.png b/tests/tests/holo/res/drawable-tvdpi/holo_searchview.png
deleted file mode 100644
index fbf4ca0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-tvdpi/holo_searchview_query.png
deleted file mode 100644
index 53d4887..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-tvdpi/holo_searchview_query_hint.png
deleted file mode 100644
index 383617b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_spinner.png b/tests/tests/holo/res/drawable-tvdpi/holo_spinner.png
deleted file mode 100644
index e2e3b73..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_switch.png
deleted file mode 100644
index ecdb2f0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_switch_checked.png
deleted file mode 100644
index 8b0701f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-tvdpi/holo_tabhost.png
deleted file mode 100644
index dcd67d7..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_textview.png
deleted file mode 100644
index 0c6037a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_timepicker.png
deleted file mode 100644
index 9c8d036..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_toggle_button.png
deleted file mode 100644
index 3a9930e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_toggle_button_checked.png
deleted file mode 100644
index db6528a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_button.png
deleted file mode 100644
index fe1fabc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index 8cd13e4..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index 643b5e0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index 9c505f8..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index 285be86..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index ae3ac7d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index fe1fabc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index 8cd13e4..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index 643b5e0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index 9c505f8..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index 285be86..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index ae3ac7d..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index 1474b24..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index 8daa0fe..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index 875b67c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index bb7f3ed..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index ab3ae4c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index 56739b6..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index 34e2fcc..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index a71ad9c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index 7ef4c5b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index f6e6cfb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index 8aebbb5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index 5d8bab9..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index 95a1657..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index 6a2eebb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index 2816574..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index c6943d2..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index bdba081..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 7f95415..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index 196404a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index 6a21e3e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index fbf4ca0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index 53d4887..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index 383617b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index e2e3b73..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index ecdb2f0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index 8b0701f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index dcd67d7..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index 0c6037a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index 9c8d036..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 3a9930e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index db6528a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index 8aebbb5..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index 5d8bab9..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index 95a1657..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index 6a2eebb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index 2816574..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index c6943d2..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index bdba081..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index 7f95415..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index 196404a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index 6a21e3e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_searchview.png
deleted file mode 100644
index fbf4ca0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index 53d4887..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index 383617b..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_spinner.png
deleted file mode 100644
index e2e3b73..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_switch.png
deleted file mode 100644
index ecdb2f0..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index 8b0701f..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index dcd67d7..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_textview.png
deleted file mode 100644
index 0c6037a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index 9c8d036..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 3a9930e..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index db6528a..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_button.png
deleted file mode 100644
index f3db6e8..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_button_pressed.png
deleted file mode 100644
index 4f52d2a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_calendar_view.png
deleted file mode 100644
index 617f66d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_calendar_view_feb.png
deleted file mode 100644
index 5a41e89..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_checkbox.png
deleted file mode 100644
index a71885d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_chronometer.png
deleted file mode 100644
index 507bf4f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_button.png
deleted file mode 100644
index f3db6e8..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_button_pressed.png
deleted file mode 100644
index 4f52d2a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_calendar_view.png
deleted file mode 100644
index f2918d8..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index dfe29b1..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_checkbox.png
deleted file mode 100644
index a71885d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_chronometer.png
deleted file mode 100644
index 507bf4f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index f3db6e8..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 4f52d2a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index f2918d8..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index dfe29b1..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index a71885d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index 507bf4f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index bdb0ba5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index fbdc6bf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index d8e074f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 3a7fd63..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 517f3d6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index c31df16..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index d184a4f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index e4fcb80..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index ce1c817..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index f9f41d4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index 73c611f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 908966b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 7c1ec1a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index fc9e20f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index bcba3ad..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 399fac9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index 3ed8d75..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index 177c26e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index 1b5b0eb..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 7bacc13..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index f8329b9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index f3db6e8..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 4f52d2a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 617f66d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 5a41e89..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index a71885d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 507bf4f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index f3db6e8..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 4f52d2a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 617f66d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 5a41e89..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index a71885d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 507bf4f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index bdb0ba5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index fbdc6bf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index d8e074f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 3a7fd63..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 517f3d6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index c31df16..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index d184a4f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index e4fcb80..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index ce1c817..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index f9f41d4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 73c611f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 908966b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 7c1ec1a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index fc9e20f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index bcba3ad..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 399fac9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 3ed8d75..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 177c26e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 1b5b0eb..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 7bacc13..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index f8329b9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index bdb0ba5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index fbdc6bf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index d8e074f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 3a7fd63..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 517f3d6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index c31df16..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index d184a4f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index e4fcb80..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index ce1c817..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index f9f41d4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index 73c611f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 908966b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 7c1ec1a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index fc9e20f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index bcba3ad..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 399fac9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 3ed8d75..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index 177c26e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 1b5b0eb..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 7bacc13..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index f8329b9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_radio_button.png
deleted file mode 100644
index bdb0ba5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index fbdc6bf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index d8e074f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index 3a7fd63..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index 517f3d6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index c31df16..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index d184a4f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index e4fcb80..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index ce1c817..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index f9f41d4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_searchview.png
deleted file mode 100644
index 73c611f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_searchview_query.png
deleted file mode 100644
index 908966b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index 7c1ec1a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_spinner.png
deleted file mode 100644
index fc9e20f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_switch.png
deleted file mode 100644
index bcba3ad..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_switch_checked.png
deleted file mode 100644
index 399fac9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_tabhost.png
deleted file mode 100644
index 3ed8d75..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_textview.png
deleted file mode 100644
index 177c26e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_timepicker.png
deleted file mode 100644
index 1b5b0eb..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 7bacc13..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index f8329b9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index f3db6e8..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 4f52d2a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 617f66d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 5a41e89..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index a71885d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 507bf4f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index f3db6e8..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 4f52d2a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 617f66d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 5a41e89..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index a71885d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 507bf4f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index bdb0ba5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index fbdc6bf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index d8e074f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 3a7fd63..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 517f3d6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index c31df16..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index d184a4f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index e4fcb80..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index ce1c817..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index f9f41d4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 73c611f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 908966b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 7c1ec1a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index fc9e20f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index bcba3ad..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 399fac9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 3ed8d75..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 177c26e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 1b5b0eb..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 7bacc13..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index f8329b9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index bdb0ba5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index fbdc6bf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index d8e074f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 3a7fd63..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 517f3d6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index c31df16..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index d184a4f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index e4fcb80..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index ce1c817..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index f9f41d4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index 73c611f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 908966b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 7c1ec1a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index fc9e20f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index bcba3ad..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 399fac9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 3ed8d75..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index 177c26e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 1b5b0eb..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 7bacc13..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index f8329b9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_button.png
deleted file mode 100644
index d630b9d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index 74e8fe0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index 6bb8c7b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index 6a32add..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index 45862a0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index af02fde..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index cdaf449..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index 69a9a7d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index ffb560e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index fd215cf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index 340ff5c..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index 60c731e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index 260866a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ba8025..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index c1f38bd..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index c981c8a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_searchview.png
deleted file mode 100644
index 43c9f5c..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index a11d860..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index 93dbee6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_spinner.png
deleted file mode 100644
index 39617cd..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_switch.png
deleted file mode 100644
index c87a53a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index 571f357..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index 5dcd37b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_textview.png
deleted file mode 100644
index 8eb8556..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index 8a1c51e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index 8e2dac0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index 516fe20..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_button.png
deleted file mode 100644
index d630b9d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_button_pressed.png
deleted file mode 100644
index 74e8fe0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_calendar_view.png
deleted file mode 100644
index 6bb8c7b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index 6a32add..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_checkbox.png
deleted file mode 100644
index 45862a0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_chronometer.png
deleted file mode 100644
index af02fde..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index d630b9d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index 74e8fe0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index 6bb8c7b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index 6a32add..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index 45862a0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index af02fde..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index cdaf449..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index 69a9a7d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index ffb560e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index fd215cf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index 340ff5c..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 60c731e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index 260866a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ba8025..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index c1f38bd..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c981c8a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index 43c9f5c..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index a11d860..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index 93dbee6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index 39617cd..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index c87a53a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index 571f357..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index 5dcd37b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index 8eb8556..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index 8a1c51e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index 8e2dac0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index 516fe20..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_button.png
deleted file mode 100644
index d630b9d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index 74e8fe0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index 78d05e2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index d11f86f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index 45862a0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index af02fde..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index d630b9d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 74e8fe0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 78d05e2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index d11f86f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index 45862a0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index af02fde..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index cdaf449..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 69a9a7d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index ffb560e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index fd215cf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 340ff5c..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 60c731e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 260866a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ba8025..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index c1f38bd..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index c981c8a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index 43c9f5c..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index a11d860..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 93dbee6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index 39617cd..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index c87a53a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 571f357..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index 5dcd37b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index 8eb8556..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index 8a1c51e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 8e2dac0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 516fe20..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index d630b9d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 74e8fe0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 6bb8c7b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 6a32add..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 45862a0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index af02fde..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index d630b9d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 74e8fe0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 6bb8c7b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 6a32add..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 45862a0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index af02fde..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index cdaf449..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 69a9a7d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index ffb560e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index fd215cf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 340ff5c..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 60c731e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 260866a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ba8025..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index c1f38bd..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index c981c8a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 43c9f5c..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index a11d860..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 93dbee6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 39617cd..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index c87a53a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 571f357..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 5dcd37b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 8eb8556..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 8a1c51e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 8e2dac0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 516fe20..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index cdaf449..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 69a9a7d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index ffb560e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index fd215cf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 340ff5c..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 60c731e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 260866a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ba8025..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index c1f38bd..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c981c8a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index 43c9f5c..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index a11d860..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 93dbee6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index 39617cd..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index c87a53a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 571f357..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 5dcd37b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index 8eb8556..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 8a1c51e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 8e2dac0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 516fe20..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index cdaf449..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index 69a9a7d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index ffb560e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index fd215cf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index 340ff5c..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index 60c731e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index 260866a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ba8025..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index c1f38bd..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index c981c8a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_searchview.png
deleted file mode 100644
index 43c9f5c..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index a11d860..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index 93dbee6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_spinner.png
deleted file mode 100644
index 39617cd..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_switch.png
deleted file mode 100644
index c87a53a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index 571f357..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index 5dcd37b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_textview.png
deleted file mode 100644
index 8eb8556..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index 8a1c51e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index 8e2dac0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index 516fe20..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index d630b9d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 74e8fe0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 6bb8c7b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 6a32add..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 45862a0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index af02fde..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index d630b9d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 74e8fe0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 6bb8c7b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 6a32add..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 45862a0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index af02fde..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index cdaf449..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 69a9a7d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index ffb560e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index fd215cf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 340ff5c..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 60c731e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 260866a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ba8025..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index c1f38bd..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c981c8a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 43c9f5c..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index a11d860..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 93dbee6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 39617cd..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index c87a53a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 571f357..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 5dcd37b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 8eb8556..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 8a1c51e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 8e2dac0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 516fe20..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index cdaf449..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 69a9a7d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index ffb560e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index fd215cf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 340ff5c..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index 60c731e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 260866a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ba8025..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index c1f38bd..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index c981c8a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index 43c9f5c..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index a11d860..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 93dbee6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index 39617cd..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index c87a53a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 571f357..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 5dcd37b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index 8eb8556..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 8a1c51e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 8e2dac0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 516fe20..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_button.png
deleted file mode 100644
index d630b9d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index 74e8fe0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index 6bb8c7b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 6a32add..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index 45862a0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index af02fde..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index d630b9d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 74e8fe0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 4a7d2ae..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 02a117c..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 45862a0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index af02fde..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index cdaf449..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 69a9a7d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index ffb560e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index fd215cf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 340ff5c..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index 60c731e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 260866a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ba8025..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index c1f38bd..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index c981c8a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 43c9f5c..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index a11d860..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 93dbee6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 39617cd..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index c87a53a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 571f357..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 5dcd37b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 8eb8556..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 8a1c51e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 8e2dac0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 516fe20..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index cdaf449..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index 69a9a7d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index ffb560e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index fd215cf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index 340ff5c..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 60c731e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 260866a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ba8025..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index c1f38bd..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c981c8a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index 43c9f5c..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index a11d860..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 93dbee6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index 39617cd..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index c87a53a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index 571f357..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index 5dcd37b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index 8eb8556..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index 8a1c51e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index 8e2dac0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 516fe20..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_button.png
deleted file mode 100644
index d630b9d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index 74e8fe0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index 4a7d2ae..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index 02a117c..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_checkbox.png
deleted file mode 100644
index 45862a0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_chronometer.png
deleted file mode 100644
index af02fde..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_radio_button.png
deleted file mode 100644
index cdaf449..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index 69a9a7d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index ffb560e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index fd215cf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index 340ff5c..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index 60c731e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index 260866a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ba8025..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index c1f38bd..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index c981c8a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_searchview.png
deleted file mode 100644
index 43c9f5c..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index a11d860..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index 93dbee6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_spinner.png
deleted file mode 100644
index 39617cd..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_switch.png
deleted file mode 100644
index c87a53a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index 571f357..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_tabhost.png
deleted file mode 100644
index 5dcd37b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_textview.png
deleted file mode 100644
index 8eb8556..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_timepicker.png
deleted file mode 100644
index 8a1c51e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index 8e2dac0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index 516fe20..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_radio_button.png
deleted file mode 100644
index cdaf449..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_radio_button_checked.png
deleted file mode 100644
index 69a9a7d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index ffb560e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index fd215cf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_0.png
deleted file mode 100644
index 340ff5c..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index 60c731e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index 260866a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index 1ba8025..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_5.png
deleted file mode 100644
index c1f38bd..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index c981c8a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_searchview.png
deleted file mode 100644
index 43c9f5c..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_searchview_query.png
deleted file mode 100644
index a11d860..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index 93dbee6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_spinner.png
deleted file mode 100644
index 39617cd..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_switch.png
deleted file mode 100644
index c87a53a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_switch_checked.png
deleted file mode 100644
index 571f357..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_tabhost.png
deleted file mode 100644
index 5dcd37b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_textview.png
deleted file mode 100644
index 8eb8556..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_timepicker.png
deleted file mode 100644
index 8a1c51e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_toggle_button.png
deleted file mode 100644
index 8e2dac0..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index 516fe20..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_button.png
deleted file mode 100644
index f3db6e8..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index 4f52d2a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index f1a3471..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 5a41e89..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index a71885d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index 507bf4f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index f3db6e8..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 4f52d2a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index f1a3471..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 8048081..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index a71885d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 507bf4f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index bdb0ba5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index fbdc6bf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index d8e074f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 3a7fd63..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 517f3d6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index c31df16..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index d184a4f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index e4fcb80..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index ce1c817..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index f9f41d4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 73c611f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 908966b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 7c1ec1a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index fc9e20f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index bcba3ad..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 399fac9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 3ed8d75..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 177c26e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 1b5b0eb..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 7bacc13..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index f8329b9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index bdb0ba5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index fbdc6bf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index d8e074f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 3a7fd63..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index 517f3d6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index c31df16..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index d184a4f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index e4fcb80..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index ce1c817..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index f9f41d4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_searchview.png
deleted file mode 100644
index 73c611f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index 908966b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 7c1ec1a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_spinner.png
deleted file mode 100644
index fc9e20f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_switch.png
deleted file mode 100644
index bcba3ad..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index 399fac9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index 3ed8d75..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_textview.png
deleted file mode 100644
index 177c26e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index 1b5b0eb..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 7bacc13..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index f8329b9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_button.png
deleted file mode 100644
index f3db6e8..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_button_pressed.png
deleted file mode 100644
index 4f52d2a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_calendar_view.png
deleted file mode 100644
index f1a3471..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index 8048081..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_checkbox.png
deleted file mode 100644
index a71885d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_chronometer.png
deleted file mode 100644
index 507bf4f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_radio_button.png
deleted file mode 100644
index bdb0ba5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index fbdc6bf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index d8e074f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index 3a7fd63..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index 517f3d6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index c31df16..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index d184a4f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index e4fcb80..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index ce1c817..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index f9f41d4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_searchview.png
deleted file mode 100644
index 73c611f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_searchview_query.png
deleted file mode 100644
index 908966b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index 7c1ec1a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_spinner.png
deleted file mode 100644
index fc9e20f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_switch.png
deleted file mode 100644
index bcba3ad..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_switch_checked.png
deleted file mode 100644
index 399fac9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_tabhost.png
deleted file mode 100644
index 3ed8d75..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_textview.png
deleted file mode 100644
index 177c26e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_timepicker.png
deleted file mode 100644
index 1b5b0eb..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_toggle_button.png
deleted file mode 100644
index 7bacc13..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index f8329b9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_radio_button.png
deleted file mode 100644
index bdb0ba5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_radio_button_checked.png
deleted file mode 100644
index fbdc6bf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index d8e074f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_radiogroup_vertical.png
deleted file mode 100644
index 3a7fd63..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_0.png
deleted file mode 100644
index 517f3d6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index c31df16..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_2point5.png
deleted file mode 100644
index d184a4f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index e4fcb80..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_5.png
deleted file mode 100644
index ce1c817..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index f9f41d4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_searchview.png
deleted file mode 100644
index 73c611f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_searchview_query.png
deleted file mode 100644
index 908966b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_searchview_query_hint.png
deleted file mode 100644
index 7c1ec1a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_spinner.png
deleted file mode 100644
index fc9e20f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_switch.png
deleted file mode 100644
index bcba3ad..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_switch_checked.png
deleted file mode 100644
index 399fac9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_tabhost.png
deleted file mode 100644
index 3ed8d75..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_textview.png
deleted file mode 100644
index 177c26e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_timepicker.png
deleted file mode 100644
index 1b5b0eb..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_toggle_button.png
deleted file mode 100644
index 7bacc13..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_toggle_button_checked.png
deleted file mode 100644
index f8329b9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_button.png
deleted file mode 100644
index f3db6e8..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index 4f52d2a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index 617f66d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index 5a41e89..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index a71885d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index 507bf4f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index f3db6e8..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index 4f52d2a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index 617f66d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index 5a41e89..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index a71885d..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index 507bf4f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index 59e93b7..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index 2e72798..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index 96517b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index e63c4e5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index 2d322a4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index 1e8f3b2..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index 13ed8ed..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index f9c36b5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index 36fb1f1..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index 32b8aa9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index bdb0ba5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index fbdc6bf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index d8e074f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index 3a7fd63..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index 517f3d6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index c31df16..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index d184a4f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index e4fcb80..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index ce1c817..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index f9f41d4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index 73c611f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index 908966b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index 7c1ec1a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index fc9e20f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index bcba3ad..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index 399fac9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index 3ed8d75..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index 177c26e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index 1b5b0eb..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 7bacc13..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index f8329b9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index bdb0ba5..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index fbdc6bf..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index d8e074f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index 3a7fd63..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index 517f3d6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index c31df16..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index d184a4f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index e4fcb80..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index ce1c817..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index f9f41d4..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_searchview.png
deleted file mode 100644
index 73c611f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index 908966b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index 7c1ec1a..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_spinner.png
deleted file mode 100644
index fc9e20f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_switch.png
deleted file mode 100644
index bcba3ad..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index 399fac9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index 3ed8d75..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_textview.png
deleted file mode 100644
index 177c26e..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index 1b5b0eb..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 7bacc13..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index f8329b9..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/layout/button.xml b/tests/tests/holo/res/layout/button.xml
deleted file mode 100644
index ca9f542..0000000
--- a/tests/tests/holo/res/layout/button.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-  
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<Button xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:text="@string/button"
-        />
diff --git a/tests/tests/holo/res/layout/calendarview.xml b/tests/tests/holo/res/layout/calendarview.xml
deleted file mode 100644
index 9c5f9ef..0000000
--- a/tests/tests/holo/res/layout/calendarview.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<CalendarView xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="match_parent"
-        android:layout_height="match_parent"
-        />
diff --git a/tests/tests/holo/res/layout/checkbox.xml b/tests/tests/holo/res/layout/checkbox.xml
deleted file mode 100644
index 8eeac39..0000000
--- a/tests/tests/holo/res/layout/checkbox.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<CheckBox xmlns:android="http://schemas.android.com/apk/res/android"
-        android:text="@string/checkbox"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        />
-
diff --git a/tests/tests/holo/res/layout/checkbox_checked.xml b/tests/tests/holo/res/layout/checkbox_checked.xml
deleted file mode 100644
index 4991c0f..0000000
--- a/tests/tests/holo/res/layout/checkbox_checked.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<CheckBox xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        />
-
diff --git a/tests/tests/holo/res/layout/chronometer.xml b/tests/tests/holo/res/layout/chronometer.xml
deleted file mode 100644
index 11dc388..0000000
--- a/tests/tests/holo/res/layout/chronometer.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-  
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<Chronometer xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        />
diff --git a/tests/tests/holo/res/layout/color_blue_bright.xml b/tests/tests/holo/res/layout/color_blue_bright.xml
deleted file mode 100644
index aa1f7d0..0000000
--- a/tests/tests/holo/res/layout/color_blue_bright.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<TextView xmlns:android="http://schemas.android.com/apk/res/android" 
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:text="@string/textview"
-        android:textColor="@android:color/holo_blue_bright"
-        />
diff --git a/tests/tests/holo/res/layout/color_blue_dark.xml b/tests/tests/holo/res/layout/color_blue_dark.xml
deleted file mode 100644
index 7956d34..0000000
--- a/tests/tests/holo/res/layout/color_blue_dark.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<TextView xmlns:android="http://schemas.android.com/apk/res/android" 
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:text="@string/textview"
-        android:textColor="@android:color/holo_blue_dark"
-        />
diff --git a/tests/tests/holo/res/layout/color_blue_light.xml b/tests/tests/holo/res/layout/color_blue_light.xml
deleted file mode 100644
index f4215c3..0000000
--- a/tests/tests/holo/res/layout/color_blue_light.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<TextView xmlns:android="http://schemas.android.com/apk/res/android" 
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:text="@string/textview"
-        android:textColor="@android:color/holo_blue_light"
-        />
diff --git a/tests/tests/holo/res/layout/color_green_dark.xml b/tests/tests/holo/res/layout/color_green_dark.xml
deleted file mode 100644
index 4ab111b..0000000
--- a/tests/tests/holo/res/layout/color_green_dark.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<TextView xmlns:android="http://schemas.android.com/apk/res/android" 
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:text="@string/textview"
-        android:textColor="@android:color/holo_green_dark"
-        />
diff --git a/tests/tests/holo/res/layout/color_green_light.xml b/tests/tests/holo/res/layout/color_green_light.xml
deleted file mode 100644
index ba57dff..0000000
--- a/tests/tests/holo/res/layout/color_green_light.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<TextView xmlns:android="http://schemas.android.com/apk/res/android" 
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:text="@string/textview"
-        android:textColor="@android:color/holo_green_light"
-        />
diff --git a/tests/tests/holo/res/layout/color_orange_dark.xml b/tests/tests/holo/res/layout/color_orange_dark.xml
deleted file mode 100644
index 761f08a..0000000
--- a/tests/tests/holo/res/layout/color_orange_dark.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<TextView xmlns:android="http://schemas.android.com/apk/res/android" 
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:text="@string/textview"
-        android:textColor="@android:color/holo_orange_dark"
-        />
diff --git a/tests/tests/holo/res/layout/color_orange_light.xml b/tests/tests/holo/res/layout/color_orange_light.xml
deleted file mode 100644
index de43795..0000000
--- a/tests/tests/holo/res/layout/color_orange_light.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<TextView xmlns:android="http://schemas.android.com/apk/res/android" 
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:text="@string/textview"
-        android:textColor="@android:color/holo_orange_light"
-        />
diff --git a/tests/tests/holo/res/layout/color_purple.xml b/tests/tests/holo/res/layout/color_purple.xml
deleted file mode 100644
index 8a2c0aa..0000000
--- a/tests/tests/holo/res/layout/color_purple.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<TextView xmlns:android="http://schemas.android.com/apk/res/android" 
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:text="@string/textview"
-        android:textColor="@android:color/holo_purple"
-        />
diff --git a/tests/tests/holo/res/layout/color_red_dark.xml b/tests/tests/holo/res/layout/color_red_dark.xml
deleted file mode 100644
index 7e5f629..0000000
--- a/tests/tests/holo/res/layout/color_red_dark.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<TextView xmlns:android="http://schemas.android.com/apk/res/android" 
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:text="@string/textview"
-        android:textColor="@android:color/holo_red_dark"
-        />
diff --git a/tests/tests/holo/res/layout/color_red_light.xml b/tests/tests/holo/res/layout/color_red_light.xml
deleted file mode 100644
index 8afb202..0000000
--- a/tests/tests/holo/res/layout/color_red_light.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<TextView xmlns:android="http://schemas.android.com/apk/res/android" 
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:text="@string/textview"
-        android:textColor="@android:color/holo_red_light"
-        />
diff --git a/tests/tests/holo/res/layout/datepicker.xml b/tests/tests/holo/res/layout/datepicker.xml
deleted file mode 100644
index 1ae9550..0000000
--- a/tests/tests/holo/res/layout/datepicker.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-  
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<DatePicker xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        />
diff --git a/tests/tests/holo/res/layout/display_info.xml b/tests/tests/holo/res/layout/display_info.xml
deleted file mode 100644
index 9804b8c..0000000
--- a/tests/tests/holo/res/layout/display_info.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    android:orientation="vertical"
-    android:layout_width="match_parent"
-    android:layout_height="match_parent"
-    >
-    <ImageView
-        android:src="@drawable/display_info"
-        android:layout_width="fill_parent"
-        android:layout_height="wrap_content"
-        />
-    <TextView 
-        android:id="@+id/text"
-        android:layout_width="fill_parent"
-        android:layout_height="wrap_content"
-        />
-</LinearLayout>
-
diff --git a/tests/tests/holo/res/layout/edittext.xml b/tests/tests/holo/res/layout/edittext.xml
deleted file mode 100644
index 5515010..0000000
--- a/tests/tests/holo/res/layout/edittext.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<EditText xmlns:android="http://schemas.android.com/apk/res/android"    
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        />
diff --git a/tests/tests/holo/res/layout/empty.xml b/tests/tests/holo/res/layout/empty.xml
deleted file mode 100644
index 562bf1a..0000000
--- a/tests/tests/holo/res/layout/empty.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="0dip"
-        android:layout_height="0dip"
-        />
diff --git a/tests/tests/holo/res/layout/holo_test.xml b/tests/tests/holo/res/layout/holo_test.xml
deleted file mode 100644
index c22d10d..0000000
--- a/tests/tests/holo/res/layout/holo_test.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2010 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-  
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-        android:orientation="vertical"
-        android:layout_width="match_parent"
-        android:layout_height="match_parent">
-    <android.holo.cts.ReferenceViewGroup
-            android:id="@+id/reference_view_group"
-            android:orientation="vertical"
-            android:layout_width="match_parent"
-            android:layout_height="match_parent"
-            />
-</LinearLayout>
diff --git a/tests/tests/holo/res/layout/progressbar.xml b/tests/tests/holo/res/layout/progressbar.xml
deleted file mode 100644
index 0975c86..0000000
--- a/tests/tests/holo/res/layout/progressbar.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<ProgressBar xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        />
diff --git a/tests/tests/holo/res/layout/progressbar_horizontal_0.xml b/tests/tests/holo/res/layout/progressbar_horizontal_0.xml
deleted file mode 100644
index f5a515e..0000000
--- a/tests/tests/holo/res/layout/progressbar_horizontal_0.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<ProgressBar xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:progress="0"
-        android:max="100"    
-        style="?android:attr/progressBarStyleHorizontal"
-        />
diff --git a/tests/tests/holo/res/layout/progressbar_horizontal_100.xml b/tests/tests/holo/res/layout/progressbar_horizontal_100.xml
deleted file mode 100644
index 3266479..0000000
--- a/tests/tests/holo/res/layout/progressbar_horizontal_100.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<ProgressBar xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:progress="100"
-        android:max="100"    
-        style="?android:attr/progressBarStyleHorizontal"
-        />
diff --git a/tests/tests/holo/res/layout/progressbar_horizontal_50.xml b/tests/tests/holo/res/layout/progressbar_horizontal_50.xml
deleted file mode 100644
index a64bb96..0000000
--- a/tests/tests/holo/res/layout/progressbar_horizontal_50.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<ProgressBar xmlns:android="http://schemas.android.com/apk/res/android"
-        android:id="@+id/progressBar1"
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:progress="50"
-        android:max="100"
-        style="?android:attr/progressBarStyleHorizontal"
-        />
diff --git a/tests/tests/holo/res/layout/progressbar_large.xml b/tests/tests/holo/res/layout/progressbar_large.xml
deleted file mode 100644
index 6b84669..0000000
--- a/tests/tests/holo/res/layout/progressbar_large.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<ProgressBar xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        style="?android:attr/progressBarStyleLarge"
-        />
diff --git a/tests/tests/holo/res/layout/progressbar_small.xml b/tests/tests/holo/res/layout/progressbar_small.xml
deleted file mode 100644
index cdb4339..0000000
--- a/tests/tests/holo/res/layout/progressbar_small.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<ProgressBar xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        style="?android:attr/progressBarStyleSmall"
-        />
diff --git a/tests/tests/holo/res/layout/radiobutton.xml b/tests/tests/holo/res/layout/radiobutton.xml
deleted file mode 100644
index f03d0f5..0000000
--- a/tests/tests/holo/res/layout/radiobutton.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<RadioButton xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:text="@string/radiobutton"
-        />
diff --git a/tests/tests/holo/res/layout/radiobutton_checked.xml b/tests/tests/holo/res/layout/radiobutton_checked.xml
deleted file mode 100644
index 6d57cc1..0000000
--- a/tests/tests/holo/res/layout/radiobutton_checked.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<RadioButton xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:checked="true"
-        android:text="@string/radiobutton_checked"
-        />
diff --git a/tests/tests/holo/res/layout/radiogroup_horizontal.xml b/tests/tests/holo/res/layout/radiogroup_horizontal.xml
deleted file mode 100644
index cdbf1c3..0000000
--- a/tests/tests/holo/res/layout/radiogroup_horizontal.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<RadioGroup xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:orientation="horizontal"
-        >
-    <RadioButton android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:text="@string/radiobutton_1" 
-            />
-    <RadioButton android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:text="@string/radiobutton_2"
-            />
-</RadioGroup>
diff --git a/tests/tests/holo/res/layout/radiogroup_vertical.xml b/tests/tests/holo/res/layout/radiogroup_vertical.xml
deleted file mode 100644
index 9f570eb..0000000
--- a/tests/tests/holo/res/layout/radiogroup_vertical.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<RadioGroup xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:orientation="vertical"
-        >
-    <RadioButton android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:text="@string/radiobutton_1"
-            />
-    <RadioButton android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:text="@string/radiobutton_2"
-            />
-</RadioGroup>
diff --git a/tests/tests/holo/res/layout/ratingbar_0.xml b/tests/tests/holo/res/layout/ratingbar_0.xml
deleted file mode 100644
index 8a5a9dd..0000000
--- a/tests/tests/holo/res/layout/ratingbar_0.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<RatingBar xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:rating="0"
-        android:numStars="5"
-        />
diff --git a/tests/tests/holo/res/layout/ratingbar_2point5.xml b/tests/tests/holo/res/layout/ratingbar_2point5.xml
deleted file mode 100644
index 38a2a50..0000000
--- a/tests/tests/holo/res/layout/ratingbar_2point5.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<RatingBar xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:rating="2.5"
-        android:numStars="5"
-        />
diff --git a/tests/tests/holo/res/layout/ratingbar_5.xml b/tests/tests/holo/res/layout/ratingbar_5.xml
deleted file mode 100644
index 9e09d4c..0000000
--- a/tests/tests/holo/res/layout/ratingbar_5.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<RatingBar xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:rating="5"
-        android:numStars="5"
-        />   
diff --git a/tests/tests/holo/res/layout/searchview.xml b/tests/tests/holo/res/layout/searchview.xml
deleted file mode 100644
index a1822ca..0000000
--- a/tests/tests/holo/res/layout/searchview.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<SearchView xmlns:android="http://schemas.android.com/apk/res/android"    
-        android:layout_width="fill_parent"
-        android:layout_height="wrap_content"
-        />
diff --git a/tests/tests/holo/res/layout/seekbar_0.xml b/tests/tests/holo/res/layout/seekbar_0.xml
deleted file mode 100644
index fac24c7..0000000
--- a/tests/tests/holo/res/layout/seekbar_0.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<SeekBar xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:progress="0"
-        android:max="100"
-        />
diff --git a/tests/tests/holo/res/layout/seekbar_100.xml b/tests/tests/holo/res/layout/seekbar_100.xml
deleted file mode 100644
index 179b39a..0000000
--- a/tests/tests/holo/res/layout/seekbar_100.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<SeekBar xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:progress="100"
-        android:max="100"
-        />
diff --git a/tests/tests/holo/res/layout/seekbar_50.xml b/tests/tests/holo/res/layout/seekbar_50.xml
deleted file mode 100644
index cfb91ab..0000000
--- a/tests/tests/holo/res/layout/seekbar_50.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<SeekBar xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:progress="50"
-        android:max="100"
-        />
diff --git a/tests/tests/holo/res/layout/spinner.xml b/tests/tests/holo/res/layout/spinner.xml
deleted file mode 100644
index 1647416..0000000
--- a/tests/tests/holo/res/layout/spinner.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<Spinner xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:prompt="@string/spinner_prompt"
-        android:entries="@array/spinner_entries"
-        />
diff --git a/tests/tests/holo/res/layout/switch_button.xml b/tests/tests/holo/res/layout/switch_button.xml
deleted file mode 100644
index 15f7038..0000000
--- a/tests/tests/holo/res/layout/switch_button.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-  
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<Switch xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:text="@string/switch_button"
-        />
diff --git a/tests/tests/holo/res/layout/switch_button_checked.xml b/tests/tests/holo/res/layout/switch_button_checked.xml
deleted file mode 100644
index 9cf7687..0000000
--- a/tests/tests/holo/res/layout/switch_button_checked.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-  
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<Switch xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:checked="true"
-        android:text="@string/switch_button"
-        />
diff --git a/tests/tests/holo/res/layout/tabhost.xml b/tests/tests/holo/res/layout/tabhost.xml
deleted file mode 100644
index 4b7bcca..0000000
--- a/tests/tests/holo/res/layout/tabhost.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="fill_parent"
-        android:layout_height="fill_parent"
-        >
-    <LinearLayout android:layout_width="fill_parent"
-            android:layout_height="fill_parent"
-            android:orientation="vertical"            
-            android:padding="5dp">
-        <TabWidget android:id="@android:id/tabs"
-                android:layout_width="fill_parent"
-                android:layout_height="wrap_content" 
-                />
-        <FrameLayout android:id="@android:id/tabcontent"
-                android:layout_width="fill_parent"
-                android:layout_height="fill_parent"
-                android:padding="5dp"
-                >
-            <LinearLayout android:id="@+id/tab_inner_view"
-                    android:layout_width="wrap_content"
-                    android:layout_height="wrap_content"
-                    />
-        </FrameLayout>
-    </LinearLayout>
-</TabHost>
diff --git a/tests/tests/holo/res/layout/textview.xml b/tests/tests/holo/res/layout/textview.xml
deleted file mode 100644
index d45bc3a..0000000
--- a/tests/tests/holo/res/layout/textview.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<TextView xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:text="@string/textview"
-        />
diff --git a/tests/tests/holo/res/layout/timepicker.xml b/tests/tests/holo/res/layout/timepicker.xml
deleted file mode 100644
index 1e0f334..0000000
--- a/tests/tests/holo/res/layout/timepicker.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-  
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<TimePicker xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        />
diff --git a/tests/tests/holo/res/layout/togglebutton.xml b/tests/tests/holo/res/layout/togglebutton.xml
deleted file mode 100644
index d15e899..0000000
--- a/tests/tests/holo/res/layout/togglebutton.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<ToggleButton xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        />
-
diff --git a/tests/tests/holo/res/layout/togglebutton_checked.xml b/tests/tests/holo/res/layout/togglebutton_checked.xml
deleted file mode 100644
index bd8cabd..0000000
--- a/tests/tests/holo/res/layout/togglebutton_checked.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<ToggleButton xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:checked="true"
-        />
diff --git a/tests/tests/holo/res/layout/zoomcontrols.xml b/tests/tests/holo/res/layout/zoomcontrols.xml
deleted file mode 100644
index 80ac8fb..0000000
--- a/tests/tests/holo/res/layout/zoomcontrols.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<ZoomControls xmlns:android="http://schemas.android.com/apk/res/android"    
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        />
diff --git a/tests/tests/holo/res/values/arrays.xml b/tests/tests/holo/res/values/arrays.xml
deleted file mode 100644
index f6e6c92..0000000
--- a/tests/tests/holo/res/values/arrays.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<resources>
-    <string-array name="spinner_entries">
-        <item>Spinner 1</item>
-        <item>Spinner 2</item>
-        <item>Spinner 3</item>
-    </string-array>
-</resources>
diff --git a/tests/tests/holo/res/values/dimens.xml b/tests/tests/holo/res/values/dimens.xml
deleted file mode 100755
index 76de0d0..0000000
--- a/tests/tests/holo/res/values/dimens.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<resources>
-    <dimen name="reference_width">320dp</dimen>
-    <dimen name="reference_height">480dp</dimen>
-</resources>
-
diff --git a/tests/tests/holo/res/values/strings.xml b/tests/tests/holo/res/values/strings.xml
deleted file mode 100644
index d2f6fd6..0000000
--- a/tests/tests/holo/res/values/strings.xml
+++ /dev/null
@@ -1,107 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2011 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<resources>
-    <string name="holo_test_utilities">Holo Test Utilities</string>
-    <string name="task_view_display_info">View Display Info</string>
-    <string name="task_view_tests">View Tests</string>
-    <string name="task_generate_one_bitmap">Generate Single Test Bitmaps</string>
-    <string name="task_generate_all_bitmaps">Generate All Test Bitmaps</string>
-    <string name="task_clear_reference_bitmaps">Clear Reference Bitmaps</string>
-    <string name="task_clear_failure_bitmaps">Clear Failure Bitmaps</string>
-    <string name="task_clear_diff_bitmaps">Clear Diff Bitmaps</string>
-
-    <string name="display_info">Display Info</string>
-    <string name="display_info_text">Density DPI: %1$d\nDensity Bucket: %2$s\nWidth DP: %3$d\nHeight DP: %4$d</string>
-
-    <string name="pick_theme">Pick Theme</string>
-    <string name="pick_layout">Pick Layout</string>
-
-    <string name="deleting_bitmaps">Deleting bitmaps...</string>
-    <string name="deleting_bitmaps_finished">Successfully deleted bitmaps!</string>
-    <string name="deleting_bitmaps_error">Failed to delete bitmaps. Is external storage mounted?</string>
-    <string name="generate_bitmap_success">Saved bitmap to %s</string>
-    <string name="generate_bitmap_failure">Failed to save bitmap to %s</string>
-    <string name="comparison_success">Bitmap matches the reference bitmap!</string>
-    <string name="comparison_failure">Bitmap does not match reference bitmap. 
-            Saved failed image to %1$s and diff analysis to %2$s.</string>
-
-    <string name="button">Button</string>
-    <string name="button_pressed">Button Pressed</string>
-    <string name="calendarview_jan">CalendarView (January)</string>
-    <string name="calendarview_feb">CalendarView (February)</string>
-    <string name="checkbox">CheckBox</string>
-    <string name="checkbox_checked">CheckBox Checked</string>
-    <string name="chronometer">Chronometer</string>
-    <string name="datepicker">DatePicker</string>
-    <string name="edittext">EditText</string>
-    <string name="progressbar">ProgressBar</string>
-    <string name="progressbar_small">ProgressBar Small</string>
-    <string name="progressbar_large">ProgressBar Large</string>
-    <string name="progressbar_horizontal_0">ProgressBar Horizontal 0%</string>
-    <string name="progressbar_horizontal_50">ProgressBar Horizontal 50%</string>
-    <string name="progressbar_horizontal_100">ProgressBar Horizontal 100%</string>
-    <string name="radiobutton">RadioButton</string>
-    <string name="radiobutton_checked">RadioButton Checked</string>
-    <string name="radiogroup_horizontal">RadioGroup Horizontal</string>
-    <string name="radiogroup_vertical">RadioGroup Vertical</string>
-    <string name="ratingbar_0">RatingBar 0 Stars</string>
-    <string name="ratingbar_2point5">RatingBar 2.5 Stars</string>
-    <string name="ratingbar_5">RatingBar 5 Stars</string>
-    <string name="ratingbar_0_pressed">RatingBar 0 Stars Pressed</string>
-    <string name="ratingbar_2point5_pressed">RatingBar 2.5 Stars Pressed</string>
-    <string name="ratingbar_5_pressed">RatingBar 5 Stars Pressed</string>
-    <string name="searchview">SearchView</string>
-    <string name="searchview_query">SearchView Query</string>
-    <string name="searchview_query_hint">SearchView Query Hint</string>
-    <string name="seekbar_0">SeekBar 0%</string>
-    <string name="seekbar_50">SeekBar 50%</string>
-    <string name="seekbar_100">SeekBar 100%</string>
-    <string name="spinner">Spinner</string>
-    <string name="switch_button">Switch</string>
-    <string name="switch_button_checked">Switch Checked</string>
-    <string name="tabhost">TabHost</string>
-    <string name="textview">TextView</string>
-    <string name="timepicker">TimePicker</string>    
-    <string name="togglebutton">ToggleButton</string>
-    <string name="togglebutton_checked">ToggleButton Checked</string>
-    <string name="zoomcontrols">ZoomControls</string>
-
-    <string name="alertdialog_onebutton">AlertDialog One Button</string>
-    <string name="alertdialog_twobuttons">AlertDialog Two Buttons</string>
-    <string name="alertdialog_threebuttons">AlertDialog Three Buttons</string>
-    <string name="alertdialog_list">AlertDialog List</string>
-    <string name="alertdialog_singlechoice">AlertDialog Single Choice</string>
-    <string name="alertdialog_multichoice">AlertDialog Multiple Choice</string>
-    <string name="progressdialog_spinner">ProgressDialog Spinner</string>
-    <string name="progressdialog_horizontal">ProgressDialog Horizontal</string>
-
-    <string name="color_blue_bright">Bright Blue Color</string>
-    <string name="color_blue_dark">Dark Blue Color</string>
-    <string name="color_blue_light">Light Blue Color</string>
-    <string name="color_green_dark">Dark Green Color</string>
-    <string name="color_green_light">Light Green Color</string>
-    <string name="color_orange_dark">Dark Orange Color</string>
-    <string name="color_orange_light">Light Orange Color</string>
-    <string name="color_purple">Purple Color</string>
-    <string name="color_red_dark">Dark Red Color</string>
-    <string name="color_red_light">Light Red Color</string>
-    
-    <string name="spinner_prompt">Spinner Prompt</string>
-    <string name="radiobutton_1">Radio Button 1</string>
-    <string name="radiobutton_2">Radio Button 2</string>
-    <string name="loading">Loading...</string>
-
-</resources>
diff --git a/tests/tests/holo/src/android/holo/cts/AllThemesIterator.java b/tests/tests/holo/src/android/holo/cts/AllThemesIterator.java
deleted file mode 100644
index 4ddc187..0000000
--- a/tests/tests/holo/src/android/holo/cts/AllThemesIterator.java
+++ /dev/null
@@ -1,68 +0,0 @@
-/*
- * Copyright (C) 2011 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package android.holo.cts;
-
-import android.content.Intent;
-
-import java.util.Iterator;
-
-/**
- * {@link Iterator} over all the possible permutations of theme and layout intents.
- */
-class AllThemesIterator implements Iterator<Intent> {
-
-    private final ThemeAdapter mThemeAdapter = new ThemeAdapter(null);
-    private final LayoutAdapter mLayoutAdapter;
-
-    private final int mTask;
-    private final int mAdapterMode;
-    private int mThemeIndex;
-    private int mLayoutIndex;
-
-    AllThemesIterator(int task, int adapterMode) {
-        mTask = task;
-        mAdapterMode = adapterMode;
-        mLayoutAdapter = new LayoutAdapter(null, adapterMode);
-    }
-
-    @Override
-    public boolean hasNext() {
-        return mThemeIndex < mThemeAdapter.getCount();
-    }
-
-    @Override
-    public Intent next() {
-        Intent intent = new Intent();
-        intent.putExtra(LayoutTestActivity.EXTRA_THEME_INDEX, mThemeIndex);
-        intent.putExtra(LayoutTestActivity.EXTRA_LAYOUT_INDEX, mLayoutIndex);
-        intent.putExtra(LayoutTestActivity.EXTRA_LAYOUT_ADAPTER_MODE, mAdapterMode);
-        intent.putExtra(LayoutTestActivity.EXTRA_TASK, mTask);
-
-        mLayoutIndex++;
-        if (mLayoutIndex >= mLayoutAdapter.getCount()) {
-            mThemeIndex++;
-            mLayoutIndex = 0;
-        }
-
-        return intent;
-    }
-
-    @Override
-    public void remove() {
-        throw new UnsupportedOperationException("I don't think so...");
-    }
-}
diff --git a/tests/tests/holo/src/android/holo/cts/BitmapAssets.java b/tests/tests/holo/src/android/holo/cts/BitmapAssets.java
deleted file mode 100644
index e676a96..0000000
--- a/tests/tests/holo/src/android/holo/cts/BitmapAssets.java
+++ /dev/null
@@ -1,136 +0,0 @@
-/*
- * Copyright (C) 2011 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package android.holo.cts;
-
-import android.content.Context;
-import android.content.res.Resources;
-import android.graphics.Bitmap;
-import android.graphics.Bitmap.CompressFormat;
-import android.graphics.drawable.BitmapDrawable;
-import android.graphics.drawable.Drawable;
-import android.holo.cts.LayoutAdapter.LayoutInfo;
-import android.holo.cts.ThemeAdapter.ThemeInfo;
-import android.os.Environment;
-import android.util.Log;
-
-import java.io.File;
-import java.io.FileOutputStream;
-import java.io.IOException;
-
-/**
- * Collection of utility methods to handle creation and deletion of assets.
- *
- * It creates a directory called "cts-holo-assets" on the external storage.
- * Below that it creates a directory called "reference" to store images
- * generated by the generator and "failure" to store images that failed to
- * match when running the test.
- */
-class BitmapAssets {
-
-    private static final String TAG = BitmapAssets.class.getSimpleName();
-
-    static final int TYPE_REFERENCE = 0;
-
-    static final int TYPE_FAILED = 1;
-
-    static final int TYPE_DIFF = 2;
-
-    public static boolean clearDirectory(int type) {
-        if (!isExternalStorageReady()) {
-            return false;
-        }
-
-        File dir = getBitmapDir(type);
-        if (dir.exists()) {
-            File[] files = dir.listFiles();
-            int numFiles = files.length;
-            for (int i = 0; i < numFiles; i++) {
-                files[i].delete();
-            }
-        }
-        return true;
-    }
-
-    private static boolean isExternalStorageReady() {
-        return Environment.MEDIA_MOUNTED.equals(Environment.getExternalStorageState());
-    }
-
-    public static File getBitmapDir(int type) {
-        String subDir;
-        switch (type) {
-            case TYPE_REFERENCE:
-                subDir = "reference";
-                break;
-            case TYPE_FAILED:
-                subDir = "failed";
-                break;
-            case TYPE_DIFF:
-                subDir = "diff";
-                break;
-            default:
-                throw new IllegalArgumentException("Bad type: " + type);
-        }
-
-        File file = new File(Environment.getExternalStorageDirectory(), "cts-holo-assets");
-        return new File(file, subDir);
-    }
-
-    public static String getBitmapName(ThemeInfo themeInfo, LayoutInfo layoutInfo) {
-        return themeInfo.getBitmapName() + "_" + layoutInfo.getBitmapName();
-    }
-
-    public static Bitmap getBitmap(Context context, String bitmapName) {
-        Resources resources = context.getResources();
-        int resourceId = resources.getIdentifier(bitmapName, "drawable", context.getPackageName());
-        return ((BitmapDrawable) resources.getDrawable(resourceId)).getBitmap();
-    }
-
-    public static File getBitmapPath(String bitmapName, int type) {
-        String prefix;
-        switch (type) {
-            case TYPE_REFERENCE:
-                prefix = "";
-                break;
-            case TYPE_FAILED:
-                prefix = "failed_";
-                break;
-            case TYPE_DIFF:
-                prefix = "diff_";
-                break;
-            default:
-                throw new IllegalArgumentException("Bad type: " + type);
-        }
-
-        return new File(getBitmapDir(type), prefix + bitmapName + ".png");
-    }
-
-    public static String saveBitmap(Bitmap bitmap, String bitmapName, int type) throws IOException {
-        if (!isExternalStorageReady()) {
-            Log.i(TAG, "External storage for saving bitmaps is not mounted");
-            return null;
-        }
-
-        File file = getBitmapPath(bitmapName, type);
-        File dir = file.getParentFile();
-        dir.mkdirs();
-
-        FileOutputStream stream = new FileOutputStream(file);
-        bitmap.compress(CompressFormat.PNG, 100, stream);
-        stream.close();
-        return file.getAbsolutePath();
-    }
-}
diff --git a/tests/tests/holo/src/android/holo/cts/BitmapDeletionActivity.java b/tests/tests/holo/src/android/holo/cts/BitmapDeletionActivity.java
deleted file mode 100644
index c496efe..0000000
--- a/tests/tests/holo/src/android/holo/cts/BitmapDeletionActivity.java
+++ /dev/null
@@ -1,103 +0,0 @@
-/*
- * Copyright (C) 2011 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package android.holo.cts;
-
-import com.android.cts.holo.R;
-
-import android.app.Activity;
-import android.app.AlertDialog;
-import android.app.Dialog;
-import android.app.ProgressDialog;
-import android.content.DialogInterface;
-import android.os.AsyncTask;
-import android.os.Bundle;
-
-/**
- * {@link Activity} that iterates over all the test layouts for a single theme
- * and either compares or generates bitmaps.
- */
-public class BitmapDeletionActivity extends Activity {
-
-    static final String EXTRA_BITMAP_TYPE = "bitmapType";
-
-    private static final int DIALOG_DELETING_ID = 1;
-    private static final int DIALOG_FINISHED_DELETING_ID = 2;
-    private static final int DIALOG_ERROR_DELETING_ID = 3;
-
-    private int mBitmapType;
-
-    @Override
-    protected void onCreate(Bundle savedInstanceState) {
-        super.onCreate(savedInstanceState);
-        mBitmapType = getIntent().getIntExtra(EXTRA_BITMAP_TYPE, -1);
-        new DeleteBitmapsTask().execute();
-    }
-
-    class DeleteBitmapsTask extends AsyncTask<Void, Void, Boolean> {
-
-        @Override
-        protected void onPreExecute() {
-            super.onPreExecute();
-            showDialog(DIALOG_DELETING_ID);
-        }
-
-        @Override
-        protected Boolean doInBackground(Void... darthVoider) {
-            return BitmapAssets.clearDirectory(mBitmapType);
-        }
-
-        @Override
-        protected void onPostExecute(Boolean success) {
-            dismissDialog(DIALOG_DELETING_ID);
-            showDialog(success ? DIALOG_FINISHED_DELETING_ID : DIALOG_ERROR_DELETING_ID);
-        }
-    }
-
-    @Override
-    protected Dialog onCreateDialog(int id, Bundle args) {
-        switch (id) {
-            case DIALOG_DELETING_ID:
-                ProgressDialog dialog = new ProgressDialog(BitmapDeletionActivity.this);
-                dialog.setMessage(getString(R.string.deleting_bitmaps));
-                return dialog;
-
-            case DIALOG_FINISHED_DELETING_ID:
-                return createFinishingDialog(R.string.deleting_bitmaps_finished);
-
-            case DIALOG_ERROR_DELETING_ID:
-                return createFinishingDialog(R.string.deleting_bitmaps_error);
-
-            default:
-                return super.onCreateDialog(id, args);
-        }
-    }
-
-    private AlertDialog createFinishingDialog(int message) {
-        DialogInterface.OnClickListener finishListener =
-                new DialogInterface.OnClickListener() {
-                    @Override
-                    public void onClick(DialogInterface dialog, int which) {
-                        finish();
-                    }
-                };
-        return new AlertDialog.Builder(BitmapDeletionActivity.this)
-                .setMessage(message)
-                .setCancelable(false)
-                .setPositiveButton(android.R.string.ok, finishListener)
-                .create();
-    }
-}
diff --git a/tests/tests/holo/src/android/holo/cts/DisplayInfoActivity.java b/tests/tests/holo/src/android/holo/cts/DisplayInfoActivity.java
deleted file mode 100644
index bdd7925..0000000
--- a/tests/tests/holo/src/android/holo/cts/DisplayInfoActivity.java
+++ /dev/null
@@ -1,70 +0,0 @@
-/*
- * Copyright (C) 2011 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package android.holo.cts;
-
-import com.android.cts.holo.R;
-
-import android.app.Activity;
-import android.os.Bundle;
-import android.util.DisplayMetrics;
-import android.view.Display;
-import android.view.WindowManager;
-import android.widget.TextView;
-
-public class DisplayInfoActivity extends Activity {
-
-    @Override
-    protected void onCreate(Bundle savedInstanceState) {
-        super.onCreate(savedInstanceState);
-        setContentView(R.layout.display_info);
-
-        WindowManager windowManager = (WindowManager) getSystemService(WINDOW_SERVICE);
-        Display display = windowManager.getDefaultDisplay();
-        DisplayMetrics metrics = new DisplayMetrics();
-        display.getMetrics(metrics);
-
-        DisplayMetrics dm = getResources().getDisplayMetrics();
-        int width = Math.round(dm.widthPixels / dm.density);
-        int height = Math.round(dm.heightPixels / dm.density);
-
-        TextView text = (TextView) findViewById(R.id.text);
-        text.setText(getString(R.string.display_info_text, metrics.densityDpi,
-                getScreenDensityBucket(metrics), width, height));
-    }
-
-    private String getScreenDensityBucket(DisplayMetrics metrics) {
-        switch (metrics.densityDpi) {
-            case DisplayMetrics.DENSITY_LOW:
-                return "ldpi";
-
-            case DisplayMetrics.DENSITY_MEDIUM:
-                return "mdpi";
-
-            case DisplayMetrics.DENSITY_HIGH:
-                return "hdpi";
-
-            case DisplayMetrics.DENSITY_XHIGH:
-                return "xdpi";
-
-            case DisplayMetrics.DENSITY_TV:
-                return "tvdpi";
-
-            default:
-                return "" + metrics.densityDpi;
-        }
-    }
-}
diff --git a/tests/tests/holo/src/android/holo/cts/HoloTest.java b/tests/tests/holo/src/android/holo/cts/HoloTest.java
deleted file mode 100644
index f3e7e63..0000000
--- a/tests/tests/holo/src/android/holo/cts/HoloTest.java
+++ /dev/null
@@ -1,148 +0,0 @@
-/*
- * Copyright (C) 2011 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package android.holo.cts;
-
-import android.content.Intent;
-import android.holo.cts.ThemeTestActivity.Result;
-import android.test.ActivityInstrumentationTestCase2;
-
-/** Tests for the Holo theme. */
-public class HoloTest extends ActivityInstrumentationTestCase2<ThemeTestActivity> {
-
-    /*
-     * The tests take a long time, so the test is sharded into separate themes.
-     */
-
-    public HoloTest() {
-        super(ThemeTestActivity.class);
-    }
-
-    public void testHolo() throws Exception {
-        runThemeTest(0);
-    }
-
-    public void testHoloDialog() throws Exception {
-        runThemeTest(1);
-    }
-
-    public void testHoloDialogMinimumWidth() throws Exception {
-        runThemeTest(2);
-    }
-
-    public void testHoloDialogNoActionBar() throws Exception {
-        runThemeTest(3);
-    }
-
-    public void testHoloDialogNoActionBarMinimumWidth() throws Exception {
-        runThemeTest(4);
-    }
-
-    public void testHoloDialogWhenLarge() throws Exception {
-        runThemeTest(5);
-    }
-
-    public void testHoloDialogWhenLargeNoActionBar() throws Exception {
-        runThemeTest(6);
-    }
-
-    public void testHoloInputMethod() throws Exception {
-        runThemeTest(7);
-    }
-
-    public void testHoloLight() throws Exception {
-        runThemeTest(8);
-    }
-
-    public void testHoloLightDarkActionBar() throws Exception {
-        runThemeTest(9);
-    }
-
-    public void testHoloLightDialog() throws Exception {
-        runThemeTest(10);
-    }
-
-    public void testHoloLightDialogMinimumWidth() throws Exception {
-        runThemeTest(11);
-    }
-
-    public void testHoloLightDialogNoActionBar() throws Exception {
-        runThemeTest(12);
-    }
-
-    public void testHoloLightDialogNoActionBarMinimumWidth() throws Exception {
-        runThemeTest(13);
-    }
-
-    public void testHoloLightDialogWhenLarge() throws Exception {
-        runThemeTest(14);
-    }
-
-    public void testHoloLightDialogWhenLargeNoActionBar() throws Exception {
-        runThemeTest(15);
-    }
-
-    public void testHoloLightNoActionBar() throws Exception {
-        runThemeTest(16);
-    }
-
-    public void testHoloLightNoActionBarFullscreen() throws Exception {
-        runThemeTest(17);
-    }
-
-    public void testHoloLightPanel() throws Exception {
-        runThemeTest(18);
-    }
-
-    public void testHoloNoActionBar() throws Exception {
-        runThemeTest(19);
-    }
-
-    public void testHoloNoActionBarFullscreen() throws Exception {
-        runThemeTest(20);
-    }
-
-    public void testHoloPanel() throws Exception {
-        runThemeTest(21);
-    }
-
-    public void testHoloWallpaper() throws Exception {
-        runThemeTest(22);
-    }
-
-    public void testHoloWallpaperNoTitleBar() throws Exception {
-        runThemeTest(23);
-    }
-
-    private void runThemeTest(int themeIndex) throws Exception {
-        Intent intent = new Intent();
-        intent.putExtra(ThemeTestActivity.EXTRA_TASK, ThemeTestActivity.TASK_COMPARE_BITMAPS);
-        intent.putExtra(ThemeTestActivity.EXTRA_THEME_INDEX, themeIndex);
-        intent.putExtra(ThemeTestActivity.EXTRA_LAYOUT_ADAPTER_MODE, LayoutAdapter.MODE_TESTING);
-        setActivityIntent(intent);
-
-        // Enable touch mode or else widgets will be highlighted causing bitmap
-        // comparison failures.
-        setActivityInitialTouchMode(true);
-
-        ThemeTestActivity activity = getActivity();
-        Result result = activity.getResultFuture().get();
-        assertTrue("Failed bitmap names: " + result.getFailedBitmapNames()
-                + " Check " + BitmapAssets.getBitmapDir(BitmapAssets.TYPE_FAILED)
-                + " and " + BitmapAssets.getBitmapDir(BitmapAssets.TYPE_DIFF) + " for details."
-                , result.passed());
-    }
-}
diff --git a/tests/tests/holo/src/android/holo/cts/HoloTestUtilitiesActivity.java b/tests/tests/holo/src/android/holo/cts/HoloTestUtilitiesActivity.java
deleted file mode 100644
index 3092490..0000000
--- a/tests/tests/holo/src/android/holo/cts/HoloTestUtilitiesActivity.java
+++ /dev/null
@@ -1,149 +0,0 @@
-/*
- * Copyright (C) 2011 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package android.holo.cts;
-
-import com.android.cts.holo.R;
-
-import android.app.ListActivity;
-import android.content.Intent;
-import android.os.Bundle;
-import android.view.View;
-import android.widget.ArrayAdapter;
-import android.widget.ListView;
-
-/**
- * {@link ListActivity} with helpful utilities like viewing the layout tests
- * and generating the reference assets that can be packaged back into the
- * test APK.
- */
-public class HoloTestUtilitiesActivity extends ListActivity {
-
-    private static final int TASK_VIEW_DISPLAY_INFO = 0;
-    private static final int TASK_VIEW_TESTS = 1;
-    private static final int TASK_GENERATE_ONE_BITMAP = 2;
-    private static final int TASK_GENERATE_ALL_BITMAPS = 3;
-    private static final int TASK_CLEAR_REFERENCE_BITMAPS = 4;
-    private static final int TASK_CLEAR_FAILED_BITMAPS = 5;
-    private static final int TASK_CLEAR_DIFF_BITMAPS = 6;
-
-    @Override
-    protected void onCreate(Bundle savedInstanceState) {
-        super.onCreate(savedInstanceState);
-
-        ArrayAdapter<Task> taskAdapter = new ArrayAdapter<Task>(this,
-                android.R.layout.simple_list_item_1);
-        taskAdapter.add(new Task(R.string.task_view_display_info, TASK_VIEW_DISPLAY_INFO));
-        taskAdapter.add(new Task(R.string.task_view_tests, TASK_VIEW_TESTS));
-        taskAdapter.add(new Task(R.string.task_generate_one_bitmap, TASK_GENERATE_ONE_BITMAP));
-        taskAdapter.add(new Task(R.string.task_generate_all_bitmaps, TASK_GENERATE_ALL_BITMAPS));
-        taskAdapter.add(new Task(R.string.task_clear_reference_bitmaps,
-                TASK_CLEAR_REFERENCE_BITMAPS));
-        taskAdapter.add(new Task(R.string.task_clear_failure_bitmaps,
-                TASK_CLEAR_FAILED_BITMAPS));
-        taskAdapter.add(new Task(R.string.task_clear_diff_bitmaps,
-                TASK_CLEAR_DIFF_BITMAPS));
-        setListAdapter(taskAdapter);
-    }
-
-    class Task {
-        private final int mTextId;
-        private final int mTaskId;
-
-        private Task(int textId, int taskId) {
-            mTextId = textId;
-            mTaskId = taskId;
-        }
-
-        @Override
-        public String toString() {
-            return getString(mTextId);
-        }
-    }
-
-    @SuppressWarnings("unchecked")
-    @Override
-    public ArrayAdapter<Task> getListAdapter() {
-        return (ArrayAdapter<Task>) super.getListAdapter();
-    }
-
-    @Override
-    protected void onListItemClick(ListView listView, View view, int position, long id) {
-        Task task = getListAdapter().getItem(position);
-        switch (task.mTaskId) {
-            case TASK_VIEW_DISPLAY_INFO:
-                viewDisplayInfo();
-                break;
-
-            case TASK_VIEW_TESTS:
-                viewTests();
-                break;
-
-            case TASK_GENERATE_ONE_BITMAP:
-                generateSingleTestBitmaps();
-                break;
-
-            case TASK_GENERATE_ALL_BITMAPS:
-                generateAllBitmaps();
-                break;
-
-            case TASK_CLEAR_REFERENCE_BITMAPS:
-                clearBitmaps(BitmapAssets.TYPE_REFERENCE);
-                break;
-
-            case TASK_CLEAR_FAILED_BITMAPS:
-                clearBitmaps(BitmapAssets.TYPE_FAILED);
-                break;
-
-            case TASK_CLEAR_DIFF_BITMAPS:
-                clearBitmaps(BitmapAssets.TYPE_DIFF);
-                break;
-
-            default:
-                throw new IllegalArgumentException("Bad task id: " + task.mTaskId);
-        }
-    }
-
-    private void viewDisplayInfo() {
-        Intent intent = new Intent(this, DisplayInfoActivity.class);
-        startActivity(intent);
-    }
-
-    private void viewTests() {
-        Intent intent = new Intent(this, ThemePickerActivity.class);
-        intent.putExtra(ThemePickerActivity.EXTRA_TASK, ThemeTestActivity.TASK_VIEW_LAYOUTS);
-        startActivity(intent);
-    }
-
-    private void generateSingleTestBitmaps() {
-        Intent intent = new Intent(this, LayoutPickerActivity.class);
-        intent.putExtra(ThemePickerActivity.EXTRA_TASK, ThemeTestActivity.TASK_GENERATE_BITMAPS);
-        startActivity(intent);
-    }
-
-    private void generateAllBitmaps() {
-        Intent intent = new Intent(this, ThemeTestActivity.class);
-        intent.putExtra(ThemeTestActivity.EXTRA_TASK, ThemeTestActivity.TASK_GENERATE_BITMAPS);
-        intent.putExtra(ThemeTestActivity.EXTRA_LAYOUT_ADAPTER_MODE, LayoutAdapter.MODE_TESTING);
-        startActivity(intent);
-    }
-
-    private void clearBitmaps(int type) {
-        Intent intent = new Intent(this, BitmapDeletionActivity.class);
-        intent.putExtra(BitmapDeletionActivity.EXTRA_BITMAP_TYPE, type);
-        startActivity(intent);
-    }
-}
diff --git a/tests/tests/holo/src/android/holo/cts/LayoutAdapter.java b/tests/tests/holo/src/android/holo/cts/LayoutAdapter.java
deleted file mode 100644
index 3a0e2af..0000000
--- a/tests/tests/holo/src/android/holo/cts/LayoutAdapter.java
+++ /dev/null
@@ -1,357 +0,0 @@
-/*
- * Copyright (C) 2011 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package android.holo.cts;
-
-import com.android.cts.holo.R;
-
-import android.holo.cts.modifiers.CalendarViewModifier;
-import android.holo.cts.modifiers.ProgressBarModifier;
-import android.holo.cts.modifiers.SearchViewModifier;
-import android.holo.cts.modifiers.TabHostModifier;
-import android.holo.cts.modifiers.TimePickerModifier;
-import android.holo.cts.modifiers.ViewPressedModifier;
-import android.view.LayoutInflater;
-import android.view.View;
-import android.view.ViewGroup;
-import android.widget.BaseAdapter;
-import android.widget.TextView;
-
-import java.util.ArrayList;
-import java.util.Calendar;
-import java.util.List;
-
-/**
- * {@link BaseAdapter} for all the layouts used to test the Holo theme.
- */
-class LayoutAdapter extends BaseAdapter {
-
-    /** Mode where we are just viewing all the layouts. */
-    static final int MODE_VIEWING = 0;
-
-    /** Mode where we are testing and may not include some layouts based on the device state. */
-    static final int MODE_TESTING = 1;
-
-    /** No timeout for widgets in layouts that aren't changed after inflation.  */
-    private static final int NO_TIMEOUT_MS = 0;
-
-    /** Small timeout for letting things like button presses to be handled. */
-    private static final int SHORT_TIMEOUT_MS = 500;
-
-    /** Longer timeout for widgets that have one-time animations. */
-    private static final int LONG_TIMEOUT_MS = 6000;
-
-    static class LayoutInfo {
-        private final int mDisplayName;
-        private final String mFileName;
-        private final int mLayout;
-        private final LayoutModifier mModifier;
-        private final long mTimeoutMs;
-
-        private LayoutInfo(int displayName, String fileName, int layout, LayoutModifier modifier,
-                long timeoutMs) {
-            mDisplayName = displayName;
-            mFileName = fileName;
-            mLayout = layout;
-            mModifier = modifier;
-            mTimeoutMs = timeoutMs;
-        }
-
-        /** @return file name to use for creating reference and failure bitmaps. */
-        public String getBitmapName() {
-            return mFileName;
-        }
-
-        /** @return layout that will be inflated and captured to a bitmap */
-        public int getLayout() {
-            return mLayout;
-        }
-
-        /** @return whether or non the layout has a layout modifier */
-        public boolean hasModifier() {
-            return mModifier != null;
-        }
-
-        /** @return null or modifier that will manipulate the layout after it is inflated */
-        public LayoutModifier getModifier() {
-            return mModifier;
-        }
-
-        /** @return timeout before taking a snapshot of the layout */
-        public long getTimeoutMs() {
-            return mTimeoutMs;
-        }
-    }
-
-    private final List<LayoutInfo> mLayoutInfos = new ArrayList<LayoutInfo>();
-
-    private final LayoutInflater mInflater;
-
-    LayoutAdapter(LayoutInflater inflater, int adapterMode) {
-        mInflater = inflater;
-
-        // Widgets
-
-        addLayout(R.string.button, "button",
-                R.layout.button, null, NO_TIMEOUT_MS);
-
-        addLayout(R.string.button_pressed, "button_pressed",
-                R.layout.button, new ViewPressedModifier(), LONG_TIMEOUT_MS);
-
-        addCalendarLayouts(adapterMode);
-
-        addLayout(R.string.checkbox, "checkbox",
-                R.layout.checkbox, null, NO_TIMEOUT_MS);
-
-        addLayout(R.string.checkbox_checked, "checkbox_checked",
-                R.layout.checkbox_checked, null, SHORT_TIMEOUT_MS);
-
-        addLayout(R.string.chronometer, "chronometer",
-                R.layout.chronometer, null, NO_TIMEOUT_MS);
-
-        // TODO: DatePicker has a blinking cursor that can be captured in the bitmap...
-        // addLayout(R.string.datepicker, "datepicker",
-        //        R.layout.datepicker, new DatePickerModifier(), LONG_TIMEOUT_MS);
-
-        addLayout(R.string.edittext, "edittext",
-                R.layout.edittext, null, NO_TIMEOUT_MS);
-
-        addLayout(R.string.progressbar, "progressbar",
-                R.layout.progressbar, new ProgressBarModifier(), NO_TIMEOUT_MS);
-
-        addLayout(R.string.progressbar_small, "progressbar_small",
-                R.layout.progressbar_small, new ProgressBarModifier(), NO_TIMEOUT_MS);
-
-        addLayout(R.string.progressbar_large, "progressbar_large",
-                R.layout.progressbar_large, new ProgressBarModifier(), NO_TIMEOUT_MS);
-
-        addLayout(R.string.progressbar_horizontal_0, "progressbar_horizontal_0",
-                R.layout.progressbar_horizontal_0, null, NO_TIMEOUT_MS);
-
-        addLayout(R.string.progressbar_horizontal_50, "progressbar_horizontal_50",
-                R.layout.progressbar_horizontal_50, null, NO_TIMEOUT_MS);
-
-        addLayout(R.string.progressbar_horizontal_100, "progressbar_horizontal_100",
-                R.layout.progressbar_horizontal_100, null, NO_TIMEOUT_MS);
-
-        addLayout(R.string.radiobutton, "radio_button",
-                R.layout.radiobutton, null, NO_TIMEOUT_MS);
-
-        addLayout(R.string.radiobutton_checked, "radio_button_checked",
-                R.layout.radiobutton_checked, null, NO_TIMEOUT_MS);
-
-        addLayout(R.string.radiogroup_horizontal, "radiogroup_horizontal",
-                R.layout.radiogroup_horizontal, null, NO_TIMEOUT_MS);
-
-        addLayout(R.string.radiogroup_vertical, "radiogroup_vertical",
-                R.layout.radiogroup_vertical, null, NO_TIMEOUT_MS);
-
-        addLayout(R.string.ratingbar_0, "ratingbar_0",
-                R.layout.ratingbar_0, null, NO_TIMEOUT_MS);
-
-        addLayout(R.string.ratingbar_2point5, "ratingbar_2point5",
-                R.layout.ratingbar_2point5, null, NO_TIMEOUT_MS);
-
-        addLayout(R.string.ratingbar_5, "ratingbar_5",
-                R.layout.ratingbar_5, null, NO_TIMEOUT_MS);
-
-        addLayout(R.string.ratingbar_0_pressed, "ratingbar_0_pressed",
-                R.layout.ratingbar_0, new ViewPressedModifier(), LONG_TIMEOUT_MS);
-
-        addLayout(R.string.ratingbar_2point5_pressed, "ratingbar_2point5_pressed",
-                R.layout.ratingbar_2point5, new ViewPressedModifier(), LONG_TIMEOUT_MS);
-
-        addLayout(R.string.ratingbar_5_pressed, "ratingbar_5_pressed",
-                R.layout.ratingbar_5, new ViewPressedModifier(), LONG_TIMEOUT_MS);
-
-        addLayout(R.string.searchview, "searchview",
-                R.layout.searchview, null, NO_TIMEOUT_MS);
-
-        addLayout(R.string.searchview_query, "searchview_query",
-                R.layout.searchview, new SearchViewModifier(SearchViewModifier.QUERY),
-                SHORT_TIMEOUT_MS);
-
-        addLayout(R.string.searchview_query_hint, "searchview_query_hint",
-                R.layout.searchview, new SearchViewModifier(SearchViewModifier.QUERY_HINT),
-                SHORT_TIMEOUT_MS);
-
-        addLayout(R.string.seekbar_0, "seekbar_0",
-                R.layout.seekbar_0, null, NO_TIMEOUT_MS);
-
-        addLayout(R.string.seekbar_50, "seekbar_50",
-                R.layout.seekbar_50, null, NO_TIMEOUT_MS);
-
-        addLayout(R.string.seekbar_100, "seekbar_100",
-                R.layout.seekbar_100, null, NO_TIMEOUT_MS);
-
-        addLayout(R.string.spinner, "spinner",
-                R.layout.spinner, null, NO_TIMEOUT_MS);
-
-        addLayout(R.string.switch_button, "switch",
-                R.layout.switch_button, null, NO_TIMEOUT_MS);
-
-        addLayout(R.string.switch_button_checked, "switch_checked",
-                R.layout.switch_button_checked, null, NO_TIMEOUT_MS);
-
-        addLayout(R.string.tabhost, "tabhost",
-                R.layout.tabhost, new TabHostModifier(), SHORT_TIMEOUT_MS);
-
-        addLayout(R.string.textview, "textview",
-                R.layout.textview, null, NO_TIMEOUT_MS);
-
-        addLayout(R.string.timepicker, "timepicker",
-                R.layout.timepicker, new TimePickerModifier(), LONG_TIMEOUT_MS);
-
-        addLayout(R.string.togglebutton, "toggle_button",
-                R.layout.togglebutton, null, NO_TIMEOUT_MS);
-
-        addLayout(R.string.togglebutton_checked, "toggle_button_checked",
-                R.layout.togglebutton_checked, null, NO_TIMEOUT_MS);
-
-
-        // TODO: Zoom control hasn't been styled for Holo so don't test them.
-
-//        addLayout(R.string.zoomcontrols, "zoomcontrols",
-//                R.layout.zoomcontrols, null, NO_TIMEOUT_MS);
-
-        // Dialogs
-
-
-        // TODO: Dialogs are changing sizes depending on screen sizes, so we can't test these.
-
-//        addLayout(R.string.alertdialog_onebutton, "alertdialog_onebutton", R.layout.empty,
-//                new DialogModifier(new AlertDialogBuilder(AlertDialogBuilder.ONE_BUTTON)),
-//                SHORT_TIMEOUT_MS);
-//
-//        addLayout(R.string.alertdialog_twobuttons, "alertdialog_twobuttons", R.layout.empty,
-//                new DialogModifier(new AlertDialogBuilder(AlertDialogBuilder.TWO_BUTTONS)),
-//                SHORT_TIMEOUT_MS);
-//
-//        addLayout(R.string.alertdialog_threebuttons, "alertdialog_threebuttons", R.layout.empty,
-//                new DialogModifier(new AlertDialogBuilder(AlertDialogBuilder.THREE_BUTTONS)),
-//                SHORT_TIMEOUT_MS);
-//
-//        addLayout(R.string.alertdialog_list, "alertdialog_list", R.layout.empty,
-//                new DialogModifier(new AlertDialogBuilder(AlertDialogBuilder.LIST)),
-//                SHORT_TIMEOUT_MS);
-//
-//        addLayout(R.string.alertdialog_singlechoice, "alertdialog_singlechoice", R.layout.empty,
-//                new DialogModifier(new AlertDialogBuilder(AlertDialogBuilder.SINGLE_CHOICE)),
-//                SHORT_TIMEOUT_MS);
-//
-//        addLayout(R.string.alertdialog_multichoice, "alertdialog_multichoice", R.layout.empty,
-//                new DialogModifier(new AlertDialogBuilder(AlertDialogBuilder.MULTI_CHOICE)),
-//                SHORT_TIMEOUT_MS);
-
-        // TODO: We can't test the spinner, because there is no way to halt the animation.
-        // addLayout(R.string.progressdialog_spinner, "progressdialog_spinner", R.layout.empty,
-        //      new DialogModifier(new ProgressDialogBuilder(ProgressDialog.STYLE_SPINNER)));
-
-//        addLayout(R.string.progressdialog_horizontal, "progressdialog_horizontal", R.layout.empty,
-//                new DialogModifier(new ProgressDialogBuilder(ProgressDialog.STYLE_HORIZONTAL)),
-//                SHORT_TIMEOUT_MS);
-
-        // Colors
-
-        addLayout(R.string.color_blue_bright, "color_blue_bright",
-                R.layout.color_blue_bright, null, NO_TIMEOUT_MS);
-
-        addLayout(R.string.color_blue_dark, "color_blue_dark",
-                R.layout.color_blue_dark, null, NO_TIMEOUT_MS);
-
-        addLayout(R.string.color_blue_light, "color_blue_light",
-                R.layout.color_blue_light, null, NO_TIMEOUT_MS);
-
-        addLayout(R.string.color_green_dark, "color_green_dark",
-                R.layout.color_green_dark, null, NO_TIMEOUT_MS);
-
-        addLayout(R.string.color_green_light, "color_green_light",
-                R.layout.color_green_light, null, NO_TIMEOUT_MS);
-
-        addLayout(R.string.color_orange_dark, "color_orange_dark",
-                R.layout.color_orange_dark, null, NO_TIMEOUT_MS);
-
-        addLayout(R.string.color_orange_light, "color_orange_light",
-                R.layout.color_orange_light, null, NO_TIMEOUT_MS);
-
-        addLayout(R.string.color_purple, "color_purple",
-                R.layout.color_purple, null, NO_TIMEOUT_MS);
-
-        addLayout(R.string.color_red_dark, "color_red_dark",
-                R.layout.color_red_dark, null, NO_TIMEOUT_MS);
-
-        addLayout(R.string.color_red_light, "color_red_light",
-                R.layout.color_red_light, null, NO_TIMEOUT_MS);
-    }
-
-    private void addLayout(int displayName, String fileName, int layout, LayoutModifier modifier,
-            long timeoutMs) {
-        addLayout(new LayoutInfo(displayName, fileName, layout, modifier, timeoutMs));
-    }
-
-    private void addLayout(LayoutInfo info) {
-        mLayoutInfos.add(info);
-    }
-
-    private void addCalendarLayouts(int adapterMode) {
-        if (adapterMode == MODE_VIEWING || !CalendarViewModifier.isMonth(Calendar.JANUARY)) {
-            addLayout(getCalendarLayoutInfo());
-        }
-
-        if (adapterMode == MODE_VIEWING || !CalendarViewModifier.isMonth(Calendar.FEBRUARY)) {
-            addLayout(getFebruaryCalendarLayoutInfo());
-        }
-    }
-
-    private LayoutInfo getCalendarLayoutInfo() {
-        return new LayoutInfo(R.string.calendarview_jan, "calendar_view",
-            R.layout.calendarview, new CalendarViewModifier(true), SHORT_TIMEOUT_MS);
-    }
-
-    private LayoutInfo getFebruaryCalendarLayoutInfo() {
-        return new LayoutInfo(R.string.calendarview_feb, "calendar_view_feb",
-            R.layout.calendarview, new CalendarViewModifier(false), SHORT_TIMEOUT_MS);
-    }
-
-    @Override
-    public int getCount() {
-        return mLayoutInfos.size();
-    }
-
-    @Override
-    public LayoutInfo getItem(int position) {
-        return mLayoutInfos.get(position);
-    }
-
-    @Override
-    public long getItemId(int position) {
-        return getItem(position).mLayout;
-    }
-
-    @Override
-    public View getView(int position, View convertView, ViewGroup parent) {
-        TextView textView;
-        if (convertView != null) {
-            textView = (TextView) convertView;
-        } else {
-            textView = (TextView) mInflater.inflate(android.R.layout.simple_list_item_1,
-                    parent, false);
-        }
-        LayoutInfo layoutInfo = getItem(position);
-        textView.setText(layoutInfo.mDisplayName);
-        return textView;
-    }
-}
diff --git a/tests/tests/holo/src/android/holo/cts/LayoutModifier.java b/tests/tests/holo/src/android/holo/cts/LayoutModifier.java
deleted file mode 100644
index 8a9d41d..0000000
--- a/tests/tests/holo/src/android/holo/cts/LayoutModifier.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Copyright (C) 2011 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package android.holo.cts;
-
-import android.view.View;
-
-/**
- * Interface used to do further setup on a view after it has been inflated.
- */
-public interface LayoutModifier {
-
-    /** Actions to take before inflating the view. */
-    void prepare();
-
-    /**
-     * @param view inflated by the test activity
-     * @return the same view or another view that will be snapshotted by the test
-     */
-    View modifyView(View view);
-}
diff --git a/tests/tests/holo/src/android/holo/cts/LayoutPickerActivity.java b/tests/tests/holo/src/android/holo/cts/LayoutPickerActivity.java
deleted file mode 100644
index f808d59..0000000
--- a/tests/tests/holo/src/android/holo/cts/LayoutPickerActivity.java
+++ /dev/null
@@ -1,53 +0,0 @@
-/*
- * Copyright (C) 2011 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package android.holo.cts;
-
-import android.app.ListActivity;
-import android.content.Intent;
-import android.os.Bundle;
-import android.view.View;
-import android.widget.ListView;
-
-/**
- * {@link ListActivity} for picking layouts. Used by the Holo Test Utilities activity.
- */
-public class LayoutPickerActivity extends ListActivity {
-
-    static final String EXTRA_THEME_INDEX = "themeIndex";
-    static final String EXTRA_TASK = "task";
-
-    private int mThemeIndex;
-    private int mTestTask;
-
-    @Override
-    protected void onCreate(Bundle savedInstanceState) {
-        super.onCreate(savedInstanceState);
-        mThemeIndex = getIntent().getIntExtra(EXTRA_THEME_INDEX, -1);
-        mTestTask = getIntent().getIntExtra(EXTRA_TASK, -1);
-        setListAdapter(new LayoutAdapter(getLayoutInflater(), LayoutAdapter.MODE_VIEWING));
-    }
-
-    @Override
-    protected void onListItemClick(ListView l, View v, int position, long id) {
-        Intent intent = new Intent(this, ThemeTestActivity.class);
-        intent.putExtra(ThemeTestActivity.EXTRA_THEME_INDEX, mThemeIndex);
-        intent.putExtra(ThemeTestActivity.EXTRA_LAYOUT_INDEX, position);
-        intent.putExtra(ThemeTestActivity.EXTRA_TASK, mTestTask);
-        intent.putExtra(ThemeTestActivity.EXTRA_LAYOUT_ADAPTER_MODE, LayoutAdapter.MODE_VIEWING);
-        startActivity(intent);
-    }
-}
diff --git a/tests/tests/holo/src/android/holo/cts/LayoutTestActivity.java b/tests/tests/holo/src/android/holo/cts/LayoutTestActivity.java
deleted file mode 100644
index 2b6c371..0000000
--- a/tests/tests/holo/src/android/holo/cts/LayoutTestActivity.java
+++ /dev/null
@@ -1,302 +0,0 @@
-/*
- * Copyright (C) 2011 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package android.holo.cts;
-
-import com.android.cts.holo.R;
-
-import android.app.Activity;
-import android.content.Intent;
-import android.graphics.Bitmap;
-import android.graphics.Canvas;
-import android.graphics.Color;
-import android.holo.cts.LayoutAdapter.LayoutInfo;
-import android.holo.cts.ThemeAdapter.ThemeInfo;
-import android.os.AsyncTask;
-import android.os.Bundle;
-import android.util.Log;
-import android.view.View;
-import android.widget.Toast;
-
-import java.io.FileNotFoundException;
-import java.io.IOException;
-import java.nio.ByteBuffer;
-
-/**
- * {@link Activity} that applies a theme, inflates a layout, and then either
- * compares or generates a bitmap of the layout.
- */
-public class LayoutTestActivity extends Activity {
-
-    private static final String TAG = LayoutTestActivity.class.getSimpleName();
-
-    // Input extras
-    static final String EXTRA_THEME_INDEX = "themeIndex";
-    static final String EXTRA_LAYOUT_INDEX = "layoutIndex";
-    static final String EXTRA_TASK = "task";
-    static final String EXTRA_LAYOUT_ADAPTER_MODE = "layoutAdapterMode";
-
-    // Output extras
-    static final String EXTRA_BITMAP_NAME = "bitmapName";
-    static final String EXTRA_MESSAGE = "message";
-    static final String EXTRA_SUCCESS = "success";
-
-    private View mTestView;
-    private String mBitmapName;
-
-    private ReferenceViewGroup mViewGroup;
-
-    @Override
-    protected void onCreate(Bundle savedInstanceState) {
-        super.onCreate(savedInstanceState);
-
-        int themeIndex = getIntent().getIntExtra(EXTRA_THEME_INDEX, -1);
-        int layoutIndex = getIntent().getIntExtra(EXTRA_LAYOUT_INDEX, -1);
-        int layoutMode = getIntent().getIntExtra(EXTRA_LAYOUT_ADAPTER_MODE, -1);
-        int task = getIntent().getIntExtra(EXTRA_TASK, -1);
-
-        ThemeAdapter themeAdapter = new ThemeAdapter(getLayoutInflater());
-        LayoutAdapter layoutAdapter = new LayoutAdapter(getLayoutInflater(), layoutMode);
-
-        ThemeInfo themeInfo = themeAdapter.getItem(themeIndex);
-        LayoutInfo layoutInfo = layoutAdapter.getItem(layoutIndex);
-        mBitmapName = BitmapAssets.getBitmapName(themeInfo, layoutInfo);
-
-        setTheme(themeInfo.getTheme());
-        setContentView(R.layout.holo_test);
-
-        if (layoutInfo.hasModifier()) {
-            layoutInfo.getModifier().prepare();
-        }
-
-        // Inflate the view in our special view group that is fixed at a certain size
-        // and layout the inflated view with the fixed measurements...
-        mViewGroup = (ReferenceViewGroup) findViewById(R.id.reference_view_group);
-        mTestView = getLayoutInflater().inflate(layoutInfo.getLayout(), mViewGroup, false);
-        mViewGroup.addView(mTestView);
-        if (layoutInfo.hasModifier()) {
-            mTestView = layoutInfo.getModifier().modifyView(mTestView);
-        }
-        mViewGroup.measure(0,  0);
-        mViewGroup.layout(0, 0, mViewGroup.getMeasuredWidth(), mViewGroup.getMeasuredHeight());
-        mTestView.setFocusable(false);
-
-        switch (task) {
-            case ThemeTestActivity.TASK_VIEW_LAYOUTS:
-                break;
-
-            case ThemeTestActivity.TASK_GENERATE_BITMAPS:
-                mTestView.postDelayed(new GenerateBitmapRunnable(), layoutInfo.getTimeoutMs());
-                break;
-
-            case ThemeTestActivity.TASK_COMPARE_BITMAPS:
-                mTestView.postDelayed(new CompareBitmapRunnable(), layoutInfo.getTimeoutMs());
-                break;
-        }
-    }
-
-    class GenerateBitmapRunnable implements Runnable {
-        @Override
-        public void run() {
-            new GenerateBitmapTask().execute();
-        }
-    }
-
-    class CompareBitmapRunnable implements Runnable {
-        @Override
-        public void run() {
-            new CompareBitmapTask().execute();
-        }
-    }
-
-    class GenerateBitmapTask extends AsyncTask<Void, Void, Boolean> {
-
-        private Bitmap mBitmap;
-
-        @Override
-        protected void onPreExecute() {
-            super.onPreExecute();
-            mBitmap = getBitmap();
-        }
-
-        @Override
-        protected Boolean doInBackground(Void... avoid) {
-            try {
-                return saveBitmap(mBitmap, BitmapAssets.TYPE_REFERENCE) != null;
-            } finally {
-                mBitmap.recycle();
-                mBitmap = null;
-            }
-        }
-
-        @Override
-        protected void onPostExecute(Boolean success) {
-            String path = BitmapAssets.getBitmapPath(mBitmapName,
-                    BitmapAssets.TYPE_REFERENCE).toString();
-            String message = path != null
-                    ? getString(R.string.generate_bitmap_success, path)
-                    : getString(R.string.generate_bitmap_failure, path);
-            Toast.makeText(getApplicationContext(), message, Toast.LENGTH_SHORT).show();
-            finishWithResult(success, message);
-        }
-    }
-
-    class CompareBitmapTask extends AsyncTask<Void, Void, String[]> {
-        private Bitmap mBitmap;
-        private Bitmap mReferenceBitmap;
-        private boolean mSame;
-
-        @Override
-        protected void onPreExecute() {
-            mBitmap = getBitmap();
-            mReferenceBitmap = BitmapAssets.getBitmap(getApplicationContext(), mBitmapName);
-        }
-
-        /* Compares 2 bitmaps' width, height and pixels.
-         * 2 Bitmaps are consider the same if color value difference is less than
-         * or equal to +/-threshold
-         */
-        private boolean compareTo(Bitmap bitmap, Bitmap reference, int threshold) {
-            if (bitmap.getConfig() != reference.getConfig() ||
-                    bitmap.getWidth() != reference.getWidth() ||
-                    bitmap.getHeight() != reference.getHeight()) {
-                return false;
-            }
-
-            int w = bitmap.getWidth();
-            int h = bitmap.getHeight();
-
-            ByteBuffer buffer1 = ByteBuffer.allocate(bitmap.getByteCount());
-            ByteBuffer buffer2 = ByteBuffer.allocate(reference.getByteCount());
-
-            bitmap.copyPixelsToBuffer(buffer1);
-            reference.copyPixelsToBuffer(buffer2);
-
-            final int length = w*h;
-            for (int i = 0; i < length; i++) {
-                int pel1 = buffer1.getInt(i);
-                int pel2 = buffer2.getInt(i);
-                int dr = (pel1 & 0x000000FF) - (pel2 & 0x000000FF);
-                int dg = ((pel1 & 0x0000FF00) - (pel2 & 0x0000FF00)) >> 8;
-                int db = ((pel1 & 0x00FF0000) - (pel2 & 0x00FF0000)) >> 16;
-
-                if (Math.abs(db) > threshold ||
-                        Math.abs(dg) > threshold ||
-                        Math.abs(dr) > threshold) {
-                    return false;
-                }
-                if (bitmap.hasAlpha()) {
-                    int da = ((pel1 & 0xFF000000) - (pel2 & 0xFF000000)) >> 24;
-                    if (Math.abs(da) > threshold) {
-                        return false;
-                    }
-                }
-            }
-            return true;
-        }
-
-        @Override
-        protected String[] doInBackground(Void... devoid) {
-            try {
-                final int threshold = 2;
-                mSame = compareTo(mBitmap, mReferenceBitmap, threshold);
-                if (!mSame) {
-                    String[] paths = new String[2];
-                    paths[0] = saveDiffBitmap(mBitmap, mReferenceBitmap);
-                    paths[1] = saveBitmap(mBitmap, BitmapAssets.TYPE_FAILED);
-                    return paths;
-                } else {
-                    return null;
-                }
-            } finally {
-                mBitmap.recycle();
-                mBitmap = null;
-            }
-        }
-
-        private String saveDiffBitmap(Bitmap bitmap1, Bitmap bitmap2) {
-            int width = Math.max(bitmap1.getWidth(), bitmap2.getWidth());
-            int height = Math.max(bitmap1.getHeight(), bitmap2.getHeight());
-            Bitmap diff = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
-
-            try {
-                for (int i = 0; i < width; i++) {
-                    for (int j = 0; j < height; j++) {
-                        boolean inBounds1 = i < bitmap1.getWidth() && j < bitmap1.getHeight();
-                        boolean inBounds2 = i < bitmap2.getWidth() && j < bitmap2.getHeight();
-                        int color;
-
-                        if (inBounds1 && inBounds2) {
-                            int color1 = bitmap1.getPixel(i, j);
-                            int color2 = bitmap2.getPixel(i, j);
-                            color = color1 == color2 ? color1 : Color.RED;
-                        } else if (inBounds1 && !inBounds2) {
-                            color = Color.BLUE;
-                        } else if (!inBounds1 && inBounds2) {
-                            color = Color.GREEN;
-                        } else {
-                            color = Color.MAGENTA;
-                        }
-                        diff.setPixel(i, j, color);
-                    }
-                }
-
-                return saveBitmap(diff, BitmapAssets.TYPE_DIFF);
-            } finally {
-                diff.recycle();
-            }
-        }
-
-        @Override
-        protected void onPostExecute(String[] paths) {
-            String message = mSame
-                    ? getString(R.string.comparison_success)
-                    : getString(R.string.comparison_failure, paths[0], paths[1]);
-            finishWithResult(mSame, message);
-        }
-    }
-
-    private Bitmap getBitmap() {
-        Log.i(TAG, "Getting bitmap for " + mBitmapName);
-        Bitmap bitmap = Bitmap.createBitmap(mTestView.getWidth(), mTestView.getHeight(),
-                Bitmap.Config.ARGB_8888);
-        Canvas canvas = new Canvas(bitmap);
-        mTestView.draw(canvas);
-        return bitmap;
-    }
-
-    private String saveBitmap(Bitmap bitmap, int type) {
-        try {
-            Log.i(TAG, "Saving bitmap for " + mBitmapName);
-            return BitmapAssets.saveBitmap(bitmap, mBitmapName, type);
-        } catch (FileNotFoundException e) {
-            Log.e(TAG, "FileNotFoundException while saving " + mBitmapName, e);
-            return null;
-        } catch (IOException e) {
-            Log.e(TAG, "IOException while saving " + mBitmapName, e);
-            return null;
-        }
-    }
-
-    private void finishWithResult(boolean success, String message) {
-        Intent data = new Intent();
-        data.putExtra(EXTRA_SUCCESS, success);
-        data.putExtra(EXTRA_MESSAGE, message);
-        data.putExtra(EXTRA_BITMAP_NAME, mBitmapName);
-        setResult(RESULT_OK, data);
-        finish();
-    }
-}
diff --git a/tests/tests/holo/src/android/holo/cts/ReferenceViewGroup.java b/tests/tests/holo/src/android/holo/cts/ReferenceViewGroup.java
deleted file mode 100644
index 104ac1d..0000000
--- a/tests/tests/holo/src/android/holo/cts/ReferenceViewGroup.java
+++ /dev/null
@@ -1,85 +0,0 @@
-/*
- * Copyright (C) 2011 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package android.holo.cts;
-
-import com.android.cts.holo.R;
-
-import android.content.Context;
-import android.content.res.Resources;
-import android.util.AttributeSet;
-import android.view.View;
-import android.view.ViewGroup;
-
-/**
- * {@link ViewGroup} that inflates to a reference width and height.
- */
-public class ReferenceViewGroup extends ViewGroup {
-
-    private final int mWidthDp;
-    private final int mHeightDp;
-
-    public ReferenceViewGroup(Context context) {
-        this(context, null);
-    }
-
-    public ReferenceViewGroup(Context context, AttributeSet attrs) {
-        super(context, attrs);
-        Resources resources = context.getResources();
-        mWidthDp = resources.getDimensionPixelSize(R.dimen.reference_width);
-        mHeightDp = resources.getDimensionPixelSize(R.dimen.reference_height);
-    }
-
-    @Override
-    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
-        widthMeasureSpec = getMeasureSpec(LayoutParams.MATCH_PARENT, mWidthDp);
-        heightMeasureSpec = getMeasureSpec(LayoutParams.MATCH_PARENT, mHeightDp);
-
-        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
-
-        int childCount = getChildCount();
-        for (int i = 0; i < childCount; i++) {
-            View child = getChildAt(i);
-            LayoutParams params = child.getLayoutParams();
-            int width = getMeasureSpec(params.width, mWidthDp);
-            int height = getMeasureSpec(params.height, mHeightDp);
-            child.measure(width, height);
-        }
-    }
-
-    private int getMeasureSpec(int value, int size) {
-        if (value == LayoutParams.MATCH_PARENT) {
-            return MeasureSpec.makeMeasureSpec(size, MeasureSpec.EXACTLY);
-        } else if (value == LayoutParams.WRAP_CONTENT) {
-            return MeasureSpec.makeMeasureSpec(size, MeasureSpec.AT_MOST);
-        } else {
-            return value;
-        }
-    }
-
-    @Override
-    protected void onLayout(boolean changed, int l, int t, int r, int b) {
-        if (!changed) {
-            return;
-        }
-
-        int childCount = getChildCount();
-        for (int i = 0; i < childCount; i++) {
-            View child = getChildAt(i);
-            child.layout(0, 0, child.getMeasuredWidth(), child.getMeasuredHeight());
-        }
-    }
-}
diff --git a/tests/tests/holo/src/android/holo/cts/SingleLayoutIterator.java b/tests/tests/holo/src/android/holo/cts/SingleLayoutIterator.java
deleted file mode 100644
index afc0fbe..0000000
--- a/tests/tests/holo/src/android/holo/cts/SingleLayoutIterator.java
+++ /dev/null
@@ -1,63 +0,0 @@
-/*
- * Copyright (C) 2011 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package android.holo.cts;
-
-import android.content.Intent;
-
-import java.util.Iterator;
-
-/**
- * {@link Iterator} over all themes and a single layout.
- */
-class SingleLayoutIterator implements Iterator<Intent> {
-
-    private final ThemeAdapter mThemeAdapter = new ThemeAdapter(null);
-
-    private final int mTask;
-    private final int mLayoutIndex;
-    private final int mLayoutAdapterMode;
-    private int mThemeIndex;
-
-    SingleLayoutIterator(int layoutIndex, int task, int layoutAdapterMode) {
-        mTask = task;
-        mLayoutAdapterMode = layoutAdapterMode;
-        mLayoutIndex = layoutIndex;
-    }
-
-    @Override
-    public boolean hasNext() {
-        return mThemeIndex < mThemeAdapter.getCount();
-    }
-
-    @Override
-    public Intent next() {
-        Intent intent = new Intent();
-        intent.putExtra(LayoutTestActivity.EXTRA_THEME_INDEX, mThemeIndex);
-        intent.putExtra(LayoutTestActivity.EXTRA_LAYOUT_INDEX, mLayoutIndex);
-        intent.putExtra(LayoutTestActivity.EXTRA_TASK, mTask);
-        intent.putExtra(LayoutTestActivity.EXTRA_LAYOUT_ADAPTER_MODE, mLayoutAdapterMode);
-
-        mThemeIndex++;
-
-        return intent;
-    }
-
-    @Override
-    public void remove() {
-        throw new UnsupportedOperationException("Nope!");
-    }
-}
diff --git a/tests/tests/holo/src/android/holo/cts/SingleThemeIterator.java b/tests/tests/holo/src/android/holo/cts/SingleThemeIterator.java
deleted file mode 100644
index 3c489ab..0000000
--- a/tests/tests/holo/src/android/holo/cts/SingleThemeIterator.java
+++ /dev/null
@@ -1,64 +0,0 @@
-/*
- * Copyright (C) 2011 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package android.holo.cts;
-
-import android.content.Intent;
-
-import java.util.Iterator;
-
-/**
- * {@link Iterator} over a single theme and all the layouts.
- */
-class SingleThemeIterator implements Iterator<Intent> {
-
-    private final LayoutAdapter mLayoutAdapter;
-
-    private final int mTask;
-    private final int mThemeIndex;
-    private final int mLayoutAdapterMode;
-    private int mLayoutIndex;
-
-    SingleThemeIterator(int themeIndex, int task, int layoutAdapterMode) {
-        mTask = task;
-        mLayoutAdapterMode = layoutAdapterMode;
-        mLayoutAdapter = new LayoutAdapter(null, layoutAdapterMode);
-        mThemeIndex = themeIndex;
-    }
-
-    @Override
-    public boolean hasNext() {
-        return mLayoutIndex < mLayoutAdapter.getCount();
-    }
-
-    @Override
-    public Intent next() {
-        Intent intent = new Intent();
-        intent.putExtra(LayoutTestActivity.EXTRA_THEME_INDEX, mThemeIndex);
-        intent.putExtra(LayoutTestActivity.EXTRA_LAYOUT_INDEX, mLayoutIndex);
-        intent.putExtra(LayoutTestActivity.EXTRA_TASK, mTask);
-        intent.putExtra(LayoutTestActivity.EXTRA_LAYOUT_ADAPTER_MODE, mLayoutAdapterMode);
-
-        mLayoutIndex++;
-
-        return intent;
-    }
-
-    @Override
-    public void remove() {
-        throw new UnsupportedOperationException("Please stop! That tickles!");
-    }
-}
diff --git a/tests/tests/holo/src/android/holo/cts/SingleThemeLayoutIterator.java b/tests/tests/holo/src/android/holo/cts/SingleThemeLayoutIterator.java
deleted file mode 100644
index 5fe5086..0000000
--- a/tests/tests/holo/src/android/holo/cts/SingleThemeLayoutIterator.java
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
- * Copyright (C) 2011 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package android.holo.cts;
-
-import android.content.Intent;
-
-import java.util.Iterator;
-
-class SingleThemeLayoutIterator implements Iterator<Intent> {
-
-    private final int mThemeIndex;
-    private final int mLayoutIndex;
-    private final int mTask;
-    private final int mLayoutAdapterMode;
-
-    private boolean hasNext = true;
-
-    SingleThemeLayoutIterator(int themeIndex, int layoutIndex, int task, int layoutAdapterMode) {
-        mThemeIndex = themeIndex;
-        mLayoutIndex = layoutIndex;
-        mTask = task;
-        mLayoutAdapterMode = layoutAdapterMode;
-    }
-
-    @Override
-    public boolean hasNext() {
-        return hasNext;
-    }
-
-    @Override
-    public Intent next() {
-        Intent intent = new Intent();
-        intent.putExtra(LayoutTestActivity.EXTRA_THEME_INDEX, mThemeIndex);
-        intent.putExtra(LayoutTestActivity.EXTRA_LAYOUT_INDEX, mLayoutIndex);
-        intent.putExtra(LayoutTestActivity.EXTRA_TASK, mTask);
-        intent.putExtra(LayoutTestActivity.EXTRA_LAYOUT_ADAPTER_MODE, mLayoutAdapterMode);
-
-        hasNext = false;
-
-        return intent;
-    }
-
-    @Override
-    public void remove() {
-        throw new UnsupportedOperationException("I can't let you do that...");
-    }
-}
diff --git a/tests/tests/holo/src/android/holo/cts/ThemeAdapter.java b/tests/tests/holo/src/android/holo/cts/ThemeAdapter.java
deleted file mode 100644
index 60b4a15..0000000
--- a/tests/tests/holo/src/android/holo/cts/ThemeAdapter.java
+++ /dev/null
@@ -1,196 +0,0 @@
-/*
- * Copyright (C) 2011 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package android.holo.cts;
-
-import android.view.LayoutInflater;
-import android.view.View;
-import android.view.ViewGroup;
-import android.widget.BaseAdapter;
-import android.widget.TextView;
-
-import java.util.ArrayList;
-import java.util.List;
-
-/**
- * {@link BaseAdapter} containing all the themes.
- */
-class ThemeAdapter extends BaseAdapter  {
-
-    static class ThemeInfo {
-        private final String mName;
-        private final int mTheme;
-        private final String mFileName;
-
-        private ThemeInfo(String name, int theme, String fileName) {
-            mName = name;
-            mTheme = theme;
-            mFileName = fileName;
-        }
-
-        public String getName() {
-            return mName;
-        }
-
-        public int getTheme() {
-            return mTheme;
-        }
-
-        public String getBitmapName() {
-            return mFileName;
-        }
-    }
-
-    private final List<ThemeInfo> mThemeInfos = new ArrayList<ThemeInfo>();
-
-    private final LayoutInflater mInflater;
-
-    ThemeAdapter(LayoutInflater inflater) {
-        mInflater = inflater;
-
-        addTheme("Holo",
-                android.R.style.Theme_Holo,
-                "holo");
-
-        addTheme("Holo Dialog",
-                android.R.style.Theme_Holo_Dialog,
-                "holo_dialog");
-
-        addTheme("Holo Dialog Minimum Width",
-                android.R.style.Theme_Holo_Dialog_MinWidth,
-                "holo_dialog_minwidth");
-
-        addTheme("Holo Dialog No Action Bar",
-                android.R.style.Theme_Holo_Dialog_NoActionBar,
-                "holo_dialog_noactionbar");
-
-        addTheme("Holo Dialog No Action Bar Minimum Width",
-                android.R.style.Theme_Holo_Dialog_NoActionBar_MinWidth,
-                "holo_dialog_noactionbar_minwidth");
-
-        addTheme("Holo Dialog When Large",
-                android.R.style.Theme_Holo_DialogWhenLarge,
-                "holo_dialogwhenlarge");
-
-        addTheme("Holo Dialog When Large No Action Bar",
-                android.R.style.Theme_Holo_DialogWhenLarge_NoActionBar,
-                "holo_dialogwhenlarge_noactionbar");
-
-        addTheme("Holo Input Method",
-                android.R.style.Theme_Holo_InputMethod,
-                "holo_inputmethod");
-
-        addTheme("Holo Light",
-                android.R.style.Theme_Holo_Light,
-                "holo_light");
-
-        addTheme("Holo Light Dark Action Bar",
-                android.R.style.Theme_Holo_Light_DarkActionBar,
-                "holo_light_darkactionbar");
-
-        addTheme("Holo Light Dialog",
-                android.R.style.Theme_Holo_Light_Dialog,
-                "holo_light_dialog");
-
-        addTheme("Holo Light Dialog Minimum Width",
-                android.R.style.Theme_Holo_Light_Dialog_MinWidth,
-                "holo_light_dialog_minwidth");
-
-        addTheme("Holo Light Dialog No Action Bar",
-                android.R.style.Theme_Holo_Light_Dialog_NoActionBar,
-                "holo_light_dialog_noactionbar");
-
-        addTheme("Holo Light Dialog No Action Bar Minimum Width",
-                android.R.style.Theme_Holo_Light_Dialog_NoActionBar_MinWidth,
-                "holo_light_dialog_noactionbar_minwidth");
-
-        addTheme("Holo Light Dialog When Large",
-                android.R.style.Theme_Holo_Light_DialogWhenLarge,
-                "holo_light_dialogwhenlarge");
-
-        addTheme("Holo Light Dialog When Large No Action Bar",
-                android.R.style.Theme_Holo_Light_DialogWhenLarge_NoActionBar,
-                "holo_light_dialogwhenlarge_noactionbar");
-
-        addTheme("Holo Light No Action Bar",
-                android.R.style.Theme_Holo_Light_NoActionBar,
-                "holo_light_noactionbar");
-
-        addTheme("Holo Light No Action Bar Fullscreen",
-                android.R.style.Theme_Holo_Light_NoActionBar_Fullscreen,
-                "holo_light_noactionbar_fullscreen");
-
-        addTheme("Holo Light Panel",
-                android.R.style.Theme_Holo_Light_Panel,
-                "holo_light_panel");
-
-        addTheme("Holo No Action Bar",
-                android.R.style.Theme_Holo_NoActionBar,
-                "holo_noactionbar");
-
-        addTheme("Holo No Action Bar Fullscreen",
-                android.R.style.Theme_Holo_NoActionBar_Fullscreen,
-                "holo_noactionbar_fullscreen");
-
-        addTheme("Holo Panel",
-                android.R.style.Theme_Holo_Panel,
-                "holo_panel");
-
-        addTheme("Holo Wallpaper",
-                android.R.style.Theme_Holo_Wallpaper,
-                "holo_wallpaper");
-
-        addTheme("Holo Wallpaper No Title Bar",
-                android.R.style.Theme_Holo_Wallpaper_NoTitleBar,
-                "holo_wallpaper_notitlebar");
-
-        // NOTE: Adding a theme doesn't mean it will be tested. You have to add an explicit
-        //       test in HoloTest for it!
-    }
-
-    private void addTheme(String name, int theme, String fileNamePrefix) {
-        mThemeInfos.add(new ThemeInfo(name, theme, fileNamePrefix));
-    }
-
-    @Override
-    public int getCount() {
-        return mThemeInfos.size();
-    }
-
-    @Override
-    public ThemeInfo getItem(int position) {
-        return mThemeInfos.get(position);
-    }
-
-    @Override
-    public long getItemId(int position) {
-        return getItem(position).mTheme;
-    }
-
-    @Override
-    public View getView(int position, View convertView, ViewGroup parent) {
-        TextView textView;
-        if (convertView != null) {
-            textView = (TextView) convertView;
-        } else {
-            textView = (TextView) mInflater.inflate(android.R.layout.simple_list_item_1,
-                    parent, false);
-        }
-        ThemeInfo themeInfo = getItem(position);
-        textView.setText(themeInfo.mName);
-        return textView;
-    }
-}
diff --git a/tests/tests/holo/src/android/holo/cts/ThemePickerActivity.java b/tests/tests/holo/src/android/holo/cts/ThemePickerActivity.java
deleted file mode 100644
index 9ded478..0000000
--- a/tests/tests/holo/src/android/holo/cts/ThemePickerActivity.java
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * Copyright (C) 2011 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package android.holo.cts;
-
-import android.app.ListActivity;
-import android.content.Intent;
-import android.os.Bundle;
-import android.view.View;
-import android.widget.ListView;
-
-/**
- * {@link ListActivity} for picking themes.
- */
-public class ThemePickerActivity extends ListActivity {
-
-    static final String EXTRA_TASK = "task";
-
-    private int mTestTask;
-
-    @Override
-    protected void onCreate(Bundle savedInstanceState) {
-        super.onCreate(savedInstanceState);
-        mTestTask = getIntent().getIntExtra(EXTRA_TASK, -1);
-        setListAdapter(new ThemeAdapter(getLayoutInflater()));
-    }
-
-    @Override
-    protected void onListItemClick(ListView l, View v, int position, long id) {
-        Intent intent = new Intent(this, LayoutPickerActivity.class);
-        intent.putExtra(LayoutPickerActivity.EXTRA_THEME_INDEX, position);
-        intent.putExtra(LayoutPickerActivity.EXTRA_TASK, mTestTask);
-        startActivity(intent);
-    }
-}
diff --git a/tests/tests/holo/src/android/holo/cts/ThemeTestActivity.java b/tests/tests/holo/src/android/holo/cts/ThemeTestActivity.java
deleted file mode 100644
index b7fdd1d..0000000
--- a/tests/tests/holo/src/android/holo/cts/ThemeTestActivity.java
+++ /dev/null
@@ -1,212 +0,0 @@
-/*
- * Copyright (C) 2011 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package android.holo.cts;
-
-import android.app.Activity;
-import android.content.Intent;
-import android.os.Bundle;
-import android.util.Log;
-
-import java.util.ArrayList;
-import java.util.Iterator;
-import java.util.List;
-import java.util.concurrent.CountDownLatch;
-import java.util.concurrent.Future;
-import java.util.concurrent.TimeUnit;
-import java.util.concurrent.TimeoutException;
-
-/**
- * {@link Activity} that iterates over all the test layouts for a single theme
- * and either compares or generates bitmaps.
- */
-public class ThemeTestActivity extends Activity {
-
-    private static final String TAG = ThemeTestActivity.class.getSimpleName();
-
-    static final String EXTRA_TASK = "task";
-    static final String EXTRA_THEME_INDEX = "themeIndex";
-    static final String EXTRA_LAYOUT_INDEX = "layoutIndex";
-    static final String EXTRA_LAYOUT_ADAPTER_MODE = "layoutAdapterMode";
-
-    static final int TASK_VIEW_LAYOUTS = 1;
-    static final int TASK_GENERATE_BITMAPS = 2;
-    static final int TASK_COMPARE_BITMAPS = 3;
-
-    private static final int VIEW_TESTS_REQUEST_CODE = 1;
-    private static final int GENERATE_BITMAP_REQUEST_CODE = 2;
-    private static final int COMPARE_BITMAPS_REQUEST_CODE = 3;
-
-    private int mRequestCode;
-    private Iterator<Intent> mIterator;
-    private Result mPendingResult;
-    private ResultFuture<Result> mResultFuture;
-
-    @Override
-    protected void onCreate(Bundle savedInstanceState) {
-        super.onCreate(savedInstanceState);
-
-        mResultFuture = new ResultFuture<Result>();
-        mPendingResult = new Result();
-
-        int task = getIntent().getIntExtra(EXTRA_TASK, -1);
-        switch (task) {
-            case TASK_VIEW_LAYOUTS:
-                mRequestCode = VIEW_TESTS_REQUEST_CODE;
-                break;
-
-            case TASK_GENERATE_BITMAPS:
-                mRequestCode = GENERATE_BITMAP_REQUEST_CODE;
-                break;
-
-            case TASK_COMPARE_BITMAPS:
-                // Don't delete any failure bitmap images that may be useful.
-                mRequestCode = COMPARE_BITMAPS_REQUEST_CODE;
-                break;
-
-            default:
-                throw new IllegalArgumentException("Bad task: " + task);
-        }
-
-        int themeIndex = getIntent().getIntExtra(EXTRA_THEME_INDEX, -1);
-        int layoutIndex = getIntent().getIntExtra(EXTRA_LAYOUT_INDEX, -1);
-        int adapterMode = getIntent().getIntExtra(EXTRA_LAYOUT_ADAPTER_MODE, -1);
-
-        Log.i(TAG, "Theme index: " + themeIndex + " Layout index: " + layoutIndex +
-                " adapter mode: " + adapterMode);
-
-        if (themeIndex < 0 && layoutIndex < 0) {
-            mIterator = new AllThemesIterator(task, adapterMode);
-        } else if (themeIndex >= 0 && layoutIndex >= 0) {
-            mIterator = new SingleThemeLayoutIterator(themeIndex, layoutIndex, task, adapterMode);
-        } else if (layoutIndex >= 0) {
-            mIterator = new SingleLayoutIterator(layoutIndex, task, adapterMode);
-        } else if (themeIndex >= 0) {
-            mIterator = new SingleThemeIterator(themeIndex, task, adapterMode);
-        } else {
-            throw new IllegalStateException();
-        }
-
-        generateNextBitmap();
-    }
-
-    private void generateNextBitmap() {
-        if (mIterator.hasNext()) {
-            Intent intent = mIterator.next();
-            intent.setClass(this, LayoutTestActivity.class);
-            startActivityForResult(intent, mRequestCode);
-        } else {
-            mResultFuture.set(mPendingResult);
-            if (mRequestCode == GENERATE_BITMAP_REQUEST_CODE) {
-                // finish with result so that generated bitmaps can be captured automatically
-                setResult(0);
-                finish();
-            }
-        }
-    }
-
-    @Override
-    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
-        switch (requestCode) {
-            case VIEW_TESTS_REQUEST_CODE:
-                return;
-
-            case GENERATE_BITMAP_REQUEST_CODE:
-            case COMPARE_BITMAPS_REQUEST_CODE:
-                handleResult(resultCode, data);
-                break;
-
-            default:
-                throw new IllegalArgumentException("Bad request code: " + requestCode);
-        }
-    }
-
-    private void handleResult(int resultCode, Intent data) {
-        if (resultCode == RESULT_CANCELED) {
-            throw new IllegalStateException("Did you interrupt the activity?");
-        }
-
-        boolean success = data.getBooleanExtra(LayoutTestActivity.EXTRA_SUCCESS, false);
-        if (!success) {
-            String bitmapName = data.getStringExtra(LayoutTestActivity.EXTRA_BITMAP_NAME);
-            mPendingResult.addFailedBitmapName(bitmapName);
-        }
-        generateNextBitmap();
-    }
-
-    public Future<Result> getResultFuture() {
-        return mResultFuture;
-    }
-
-    static class Result {
-
-        private List<String> mFailedBitmapNames = new ArrayList<String>();
-
-        public boolean passed() {
-            return mFailedBitmapNames.isEmpty();
-        }
-
-        public List<String> getFailedBitmapNames() {
-            return mFailedBitmapNames;
-        }
-
-        private void addFailedBitmapName(String bitmapName) {
-            mFailedBitmapNames.add(bitmapName);
-        }
-    }
-
-    class ResultFuture<T> implements Future<T> {
-
-        private final CountDownLatch mLatch = new CountDownLatch(1);
-
-        private T mResult;
-
-        public void set(T result) {
-            mResult = result;
-            mLatch.countDown();
-        }
-
-        @Override
-        public T get() throws InterruptedException {
-            mLatch.await();
-            return mResult;
-        }
-
-        @Override
-        public T get(long timeout, TimeUnit unit) throws InterruptedException,
-                TimeoutException {
-            if (!mLatch.await(timeout, unit)) {
-                throw new TimeoutException();
-            }
-            return mResult;
-        }
-
-        @Override
-        public boolean isDone() {
-            return mLatch.getCount() > 0;
-        }
-
-        @Override
-        public boolean cancel(boolean mayInterruptIfRunning) {
-            return false;
-        }
-
-        @Override
-        public boolean isCancelled() {
-            return false;
-        }
-    }
-}
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/AbstractLayoutModifier.java b/tests/tests/holo/src/android/holo/cts/modifiers/AbstractLayoutModifier.java
deleted file mode 100644
index 6c8b601..0000000
--- a/tests/tests/holo/src/android/holo/cts/modifiers/AbstractLayoutModifier.java
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * Copyright (C) 2011 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package android.holo.cts.modifiers;
-
-import android.holo.cts.LayoutModifier;
-
-/**
- * {@link LayoutModifier} that does nothing in {@link #prepare()}.
- */
-abstract class AbstractLayoutModifier implements LayoutModifier {
-
-    @Override
-    public void prepare() {
-    }
-}
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/AlertDialogBuilder.java b/tests/tests/holo/src/android/holo/cts/modifiers/AlertDialogBuilder.java
deleted file mode 100644
index 1f4c100..0000000
--- a/tests/tests/holo/src/android/holo/cts/modifiers/AlertDialogBuilder.java
+++ /dev/null
@@ -1,82 +0,0 @@
-/*
- * Copyright (C) 2011 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package android.holo.cts.modifiers;
-
-import android.app.AlertDialog;
-import android.app.Dialog;
-import android.view.View;
-
-public class AlertDialogBuilder implements DialogBuilder {
-
-    public static final int ONE_BUTTON = 0;
-
-    public static final int TWO_BUTTONS = 1;
-
-    public static final int THREE_BUTTONS = 2;
-
-    public static final int LIST = 3;
-
-    public static final int SINGLE_CHOICE = 4;
-
-    public static final int MULTI_CHOICE = 5;
-
-    private int mDialogType;
-
-    private static final CharSequence[] ITEMS = {"Red", "Green", "Blue"};
-
-    public AlertDialogBuilder(int dialogType) {
-        mDialogType = dialogType;
-    }
-
-    @Override
-    public Dialog buildDialog(View view) {
-        AlertDialog.Builder builder = new AlertDialog.Builder(view.getContext());
-
-        switch (mDialogType) {
-            case ONE_BUTTON:
-                builder.setTitle("Exit Dialog")
-                        .setMessage("Are you sure you want to exit?")
-                        .setPositiveButton("Exit", null);
-                break;
-            case TWO_BUTTONS:
-                builder.setMessage("Are you sure you want to exit?")
-                        .setPositiveButton("Exit", null)
-                        .setNegativeButton("Cancel", null);
-                break;
-            case THREE_BUTTONS:
-                builder.setMessage("Are you sure you want to exit?")
-                        .setPositiveButton("Exit", null)
-                        .setNeutralButton("Neutral", null)
-                        .setNegativeButton("Cancel", null);
-                break;
-            case LIST:
-                builder.setTitle("Pick a Color")
-                        .setItems(ITEMS, null);
-                break;
-            case SINGLE_CHOICE:
-                builder.setTitle("Pick a Color")
-                        .setSingleChoiceItems(ITEMS, 1, null);
-                break;
-            case MULTI_CHOICE:
-                builder.setTitle("Pick a Color")
-                        .setMultiChoiceItems(ITEMS, new boolean[]{false, true, false}, null);
-                break;
-        }
-
-        return builder.show();
-    }
-}
\ No newline at end of file
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/CalendarViewModifier.java b/tests/tests/holo/src/android/holo/cts/modifiers/CalendarViewModifier.java
deleted file mode 100644
index e27b6c1..0000000
--- a/tests/tests/holo/src/android/holo/cts/modifiers/CalendarViewModifier.java
+++ /dev/null
@@ -1,62 +0,0 @@
-/*
- * Copyright (C) 2011 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package android.holo.cts.modifiers;
-
-import android.holo.cts.LayoutModifier;
-import android.view.View;
-import android.widget.CalendarView;
-
-import java.util.Calendar;
-import java.util.GregorianCalendar;
-import java.util.TimeZone;
-
-/**
- * {@LayoutModifier} to set a precise date on a {@link CalendarView}.
- */
-public class CalendarViewModifier implements LayoutModifier {
-    /**
-     * Long representation of a date that is 30 years in milliseconds from
-     * Unix epoch (January 1, 1970 00:00:00).
-     */
-    private static final long JANUARY_DATE = 946707779241L;
-
-    private static final long FEBRUARY_DATE = 951033600000L;
-
-    private static final TimeZone TZ = TimeZone.getTimeZone("GMT+00:00");
-
-    private final boolean mJanuary;
-
-    public CalendarViewModifier(boolean january) {
-        mJanuary = january;
-    }
-
-    @Override
-    public void prepare() {
-        TimeZone.setDefault(TZ);
-    }
-
-    @Override
-    public View modifyView(View view) {
-        ((CalendarView) view).setDate(mJanuary ? JANUARY_DATE : FEBRUARY_DATE);
-        return view;
-    }
-
-    public static boolean isMonth(int month) {
-        Calendar cal = new GregorianCalendar(TZ);
-        return cal.get(Calendar.MONTH) == month;
-    }
-}
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/DatePickerModifier.java b/tests/tests/holo/src/android/holo/cts/modifiers/DatePickerModifier.java
deleted file mode 100644
index a828eb8..0000000
--- a/tests/tests/holo/src/android/holo/cts/modifiers/DatePickerModifier.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Copyright (C) 2011 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package android.holo.cts.modifiers;
-
-import android.holo.cts.LayoutModifier;
-import android.view.View;
-import android.widget.DatePicker;
-
-/**
- * {@link LayoutModifier} that sets a precise date on a {@link DatePicker}.
- */
-public class DatePickerModifier extends AbstractLayoutModifier {
-
-    @Override
-    public View modifyView(View view) {
-        DatePicker tp = (DatePicker) view;
-        tp.updateDate(2011, 4, 20);
-        return view;
-    }
-}
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/DialogBuilder.java b/tests/tests/holo/src/android/holo/cts/modifiers/DialogBuilder.java
deleted file mode 100644
index 94712b5..0000000
--- a/tests/tests/holo/src/android/holo/cts/modifiers/DialogBuilder.java
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * Copyright (C) 2011 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package android.holo.cts.modifiers;
-
-import android.app.Dialog;
-import android.view.View;
-
-/**
- * Interface to implement should you want to write a test that uses
- * a Dialog. Since a Dialog shows in a new window, implementation
- * of this interface is required in order to appropriately save
- * the Dialog for testing.
- */
-interface DialogBuilder {
-
-    Dialog buildDialog(View view);
-}
\ No newline at end of file
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/DialogModifier.java b/tests/tests/holo/src/android/holo/cts/modifiers/DialogModifier.java
deleted file mode 100644
index 38167e0..0000000
--- a/tests/tests/holo/src/android/holo/cts/modifiers/DialogModifier.java
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * Copyright (C) 2011 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package android.holo.cts.modifiers;
-
-import android.app.Dialog;
-import android.holo.cts.LayoutModifier;
-import android.view.View;
-import android.view.ViewGroup;
-
-/**
- * Wacky {@link LayoutModifier} that takes a {@link Dialog} and transplants into the
- * parent view group.
- */
-public class DialogModifier extends AbstractLayoutModifier {
-
-    private DialogBuilder mBuilder;
-
-    public DialogModifier(DialogBuilder builder) {
-        mBuilder = builder;
-    }
-
-    @Override
-    public View modifyView(View view) {
-        Dialog dialog = mBuilder.buildDialog(view);
-
-        ViewGroup parent = (ViewGroup) view.getParent();
-        parent.removeView(view); // remove the filler view
-
-        // get the dialog as a view
-        View newView = dialog.getWindow().getDecorView();
-
-        // remove it from the dialog
-        dialog.getWindow().getWindowManager().removeView(newView);
-
-        // so we can add it to our ViewGroup
-        parent.addView(newView);
-
-        return newView;
-    }
-}
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/ProgressBarModifier.java b/tests/tests/holo/src/android/holo/cts/modifiers/ProgressBarModifier.java
deleted file mode 100644
index ffb93fb..0000000
--- a/tests/tests/holo/src/android/holo/cts/modifiers/ProgressBarModifier.java
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * Copyright (C) 2012 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package android.holo.cts.modifiers;
-
-import android.view.View;
-import android.view.animation.Interpolator;
-import android.widget.ProgressBar;
-
-public class ProgressBarModifier extends AbstractLayoutModifier {
-
-    @Override
-    public View modifyView(View view) {
-        ProgressBar pb = (ProgressBar) view;
-        pb.setInterpolator(new ZeroInterpolator());
-        return pb;
-    }
-
-    private static class ZeroInterpolator implements Interpolator {
-        @Override
-        public float getInterpolation(float input) {
-            return 0;
-        }
-    }
-}
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/ProgressDialogBuilder.java b/tests/tests/holo/src/android/holo/cts/modifiers/ProgressDialogBuilder.java
deleted file mode 100644
index b2c7744..0000000
--- a/tests/tests/holo/src/android/holo/cts/modifiers/ProgressDialogBuilder.java
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * Copyright (C) 2011 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package android.holo.cts.modifiers;
-
-import com.android.cts.holo.R;
-
-import android.app.Dialog;
-import android.app.ProgressDialog;
-import android.content.Context;
-import android.view.View;
-
-public class ProgressDialogBuilder implements DialogBuilder {
-
-    private int mDialogType;
-
-    public ProgressDialogBuilder(int dialogType) {
-        mDialogType = dialogType;
-    }
-
-    @Override
-    public Dialog buildDialog(View view) {
-        Context context = view.getContext();
-        ProgressDialog progressDialog = new ProgressDialog(view.getContext());
-        progressDialog.setMessage(context.getString(R.string.loading));
-
-        switch (mDialogType) {
-            case ProgressDialog.STYLE_SPINNER:
-                progressDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
-                break;
-
-            case ProgressDialog.STYLE_HORIZONTAL:
-                progressDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
-                progressDialog.setMax(100);
-                break;
-
-            default:
-                throw new IllegalArgumentException("Bad dialog type: " + mDialogType);
-        }
-        progressDialog.show();
-        return progressDialog;
-    }
-}
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/SearchViewModifier.java b/tests/tests/holo/src/android/holo/cts/modifiers/SearchViewModifier.java
deleted file mode 100644
index bbffa9e..0000000
--- a/tests/tests/holo/src/android/holo/cts/modifiers/SearchViewModifier.java
+++ /dev/null
@@ -1,57 +0,0 @@
-/*
- * Copyright (C) 2011 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package android.holo.cts.modifiers;
-
-import com.android.cts.holo.R;
-
-import android.content.Context;
-import android.view.View;
-import android.widget.SearchView;
-
-public class SearchViewModifier extends AbstractLayoutModifier {
-
-    public static final int QUERY_HINT = 0;
-    public static final int QUERY = 1;
-
-    private int mSearchViewType;
-
-    public SearchViewModifier(int searchViewType) {
-        mSearchViewType = searchViewType;
-    }
-
-    @Override
-    public View modifyView(View view) {
-        SearchView searchView = (SearchView) view;
-        Context context = view.getContext();
-
-        switch (mSearchViewType) {
-            case QUERY_HINT:
-                searchView.setQueryHint(context.getString(R.string.searchview_query_hint));
-                break;
-
-            case QUERY:
-                searchView.setQuery(context.getString(R.string.searchview_query), false);
-                break;
-
-            default:
-                throw new IllegalArgumentException("Bad search view type: " + mSearchViewType);
-        }
-
-        searchView.setIconifiedByDefault(false);
-        return searchView;
-    }
-}
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/TabHostModifier.java b/tests/tests/holo/src/android/holo/cts/modifiers/TabHostModifier.java
deleted file mode 100644
index 34f171c..0000000
--- a/tests/tests/holo/src/android/holo/cts/modifiers/TabHostModifier.java
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * Copyright (C) 2011 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package android.holo.cts.modifiers;
-
-import com.android.cts.holo.R;
-
-import android.view.View;
-import android.widget.TabHost;
-
-public class TabHostModifier extends AbstractLayoutModifier {
-
-    @Override
-    public View modifyView(View view) {
-        TabHost tabHost = (TabHost) view;
-        tabHost.setup();
-
-        tabHost.addTab(tabHost.newTabSpec("1")
-                .setIndicator("Tab 1")
-                .setContent(R.id.tab_inner_view));
-
-        tabHost.addTab(tabHost.newTabSpec("2")
-                .setIndicator("Tab 2")
-                .setContent(R.id.tab_inner_view));
-
-        tabHost.addTab(tabHost.newTabSpec("3")
-                .setIndicator("Tab 3")
-                .setContent(R.id.tab_inner_view));
-
-        tabHost.setCurrentTab(2);
-
-        return view;
-    }
-}
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/TimePickerModifier.java b/tests/tests/holo/src/android/holo/cts/modifiers/TimePickerModifier.java
deleted file mode 100644
index e9e13bb..0000000
--- a/tests/tests/holo/src/android/holo/cts/modifiers/TimePickerModifier.java
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * Copyright (C) 2011 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package android.holo.cts.modifiers;
-
-import android.view.View;
-import android.widget.TimePicker;
-
-public class TimePickerModifier extends AbstractLayoutModifier {
-
-    @Override
-    public View modifyView(View view) {
-        TimePicker timePicker = (TimePicker) view;
-        timePicker.setIs24HourView(true);
-        timePicker.setCurrentHour(13);
-        timePicker.setCurrentMinute(37);
-        return view;
-    }
-}
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/ViewPressedModifier.java b/tests/tests/holo/src/android/holo/cts/modifiers/ViewPressedModifier.java
deleted file mode 100644
index 4be06da..0000000
--- a/tests/tests/holo/src/android/holo/cts/modifiers/ViewPressedModifier.java
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * Copyright (C) 2011 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package android.holo.cts.modifiers;
-
-import android.view.View;
-
-public class ViewPressedModifier extends AbstractLayoutModifier {
-
-    @Override
-    public View modifyView(View view) {
-        view.setPressed(true);
-        return view;
-    }
-}
diff --git a/tests/tests/net/src/android/net/wifi/cts/WifiManagerTest.java b/tests/tests/net/src/android/net/wifi/cts/WifiManagerTest.java
index 283f63b..213dc17 100644
--- a/tests/tests/net/src/android/net/wifi/cts/WifiManagerTest.java
+++ b/tests/tests/net/src/android/net/wifi/cts/WifiManagerTest.java
@@ -407,6 +407,10 @@
      * To pass this CTS test, a connected WiFi link is required.
      */
     public void testWifiWatchdog() throws Exception {
+        if (!WifiFeature.isWifiSupported(getContext())) {
+            // skip the test if WiFi is not supported
+            return;
+        }
         // Make sure WiFi is enabled
         if (!mWifiManager.isWifiEnabled()) {
             setWifiEnabled(true);
diff --git a/tests/tests/permission/src/android/permission/cts/FileSystemPermissionTest.java b/tests/tests/permission/src/android/permission/cts/FileSystemPermissionTest.java
index e606f85..fab26b5 100644
--- a/tests/tests/permission/src/android/permission/cts/FileSystemPermissionTest.java
+++ b/tests/tests/permission/src/android/permission/cts/FileSystemPermissionTest.java
@@ -538,15 +538,49 @@
         }
     }
 
-    private static final Set<File> SYS_EXCEPTIONS = new HashSet<File>(
+    // This set contains all exceptions for writable sysfs, if it is a
+    // directory, all files below that directory are included, so be
+    // careful.
+    private static final Set<String> SYS_EXCEPTIONS = new HashSet<String>(
             Arrays.asList(
-                new File("/sys/kernel/debug/tracing/trace_marker")
+                "/sys/kernel/debug/tracing/trace_marker",
+                "/sys/fs/selinux"
             ));
 
+    private static Set <File> getIgnorablesFromPaths(Set <String> paths) {
+
+        Set <File> ignorable = new HashSet <File> ();
+
+        for(String ignore : paths) {
+               File tmp = new File(ignore);
+
+               File[] files = null;
+               if(tmp.isDirectory()) {
+                    files = tmp.listFiles(new FileFilter() {
+                       @Override public boolean accept(File pathname) {
+                           return pathname.isFile();
+                       }
+                   });
+               }
+               else if(tmp.isFile()){
+                   files = new File[1];
+                   files [0] = tmp;
+               }
+               else {
+                   // Should this be an Exception?
+                   continue;
+               }
+               ignorable.addAll(Arrays.asList(files));
+        }
+        return ignorable;
+    }
+
     @LargeTest
     public void testAllFilesInSysAreNotWritable() throws Exception {
         Set<File> writable = getAllWritableFilesInDirAndSubDir(new File("/sys"));
-        writable.removeAll(SYS_EXCEPTIONS);
+        Set<File> ignorables = getIgnorablesFromPaths(SYS_EXCEPTIONS);
+
+        writable.removeAll(ignorables);
         assertTrue("Found writable: " + writable.toString(),
                 writable.isEmpty());
     }
@@ -664,6 +698,12 @@
     getAllInsecureBlockDevicesInDirAndSubdir(File dir) throws Exception {
         assertTrue(dir.isDirectory());
         Set<File> retval = new HashSet<File>();
+
+        if (isSymbolicLink(dir)) {
+            // don't examine symbolic links.
+            return retval;
+        }
+
         File[] subDirectories = dir.listFiles(new FileFilter() {
             @Override public boolean accept(File pathname) {
                 return pathname.isDirectory();
diff --git a/tests/tests/provider/src/android/provider/cts/CalendarTest.java b/tests/tests/provider/src/android/provider/cts/CalendarTest.java
index e460453..cbefa9d 100644
--- a/tests/tests/provider/src/android/provider/cts/CalendarTest.java
+++ b/tests/tests/provider/src/android/provider/cts/CalendarTest.java
@@ -1946,6 +1946,10 @@
         assertTrue(eventId >= 0);
         return eventValues;
       }
+
+      public long getCalendarId() {
+        return mCalendarId;
+      }
     }
 
     /**
@@ -1981,7 +1985,8 @@
           CalendarContract.Instances.CONTENT_BY_DAY_URI, julianStart + "/" + julianEnd);
 
       // Query the range, sorting by event start time
-      Cursor c = mContentResolver.query(uri, null, null, null, Events.DTSTART);
+      Cursor c = mContentResolver.query(uri, null, Instances.CALENDAR_ID + "="
+              + helper.getCalendarId(), null, Events.DTSTART);
 
       // Assert that two events are returned
       assertEquals(c.getCount(), 2);
diff --git a/tests/tests/provider/src/android/provider/cts/ContactsContract_DumpFileProviderTest.java b/tests/tests/provider/src/android/provider/cts/ContactsContract_DumpFileProviderTest.java
new file mode 100644
index 0000000..5c5afaa
--- /dev/null
+++ b/tests/tests/provider/src/android/provider/cts/ContactsContract_DumpFileProviderTest.java
@@ -0,0 +1,106 @@
+/*
+ * Copyright (C) 2013 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License
+ */
+
+package android.provider.cts;
+
+import android.content.ContentResolver;
+import android.net.Uri;
+import android.test.AndroidTestCase;
+
+import java.io.FileNotFoundException;
+
+public class ContactsContract_DumpFileProviderTest extends AndroidTestCase {
+
+    private static final String URI_PREFIX = "content://com.android.contacts.dumpfile/";
+
+    private static final String[] NOT_ALLOWED_FILES = {
+            "not_allowed.txt",
+            "../A-contacts-db.zip",   // ".." is not allowed.
+            "/A-contacts-db.zip",     // "/" is not allowed
+            "-contacts-db.zip",       // no name prefix
+            "asdf-contacts-db.zip"};
+
+    private static final String[] ALLOWED_FILES = {
+            "1234567890abcdefABCDEF-contacts-db.zip",
+            "a-contacts-db.zip",
+            "0-contacts-db.zip",
+            "A-contacts-db.zip",
+            "abcdefabcdefabcdefabcdef-contacts-db.zip"};
+
+    private ContentResolver mResolver;
+
+    @Override
+    protected void setUp() throws Exception {
+        super.setUp();
+        mResolver = getContext().getContentResolver();
+    }
+
+    public void testOpenFileDescriptor_throwsErrorWithIllegalFileName() {
+        for (String fileName : NOT_ALLOWED_FILES) {
+            Uri uri = Uri.parse(URI_PREFIX + fileName);
+            assertOpenFileDescriptorThrowsError(uri);
+        }
+    }
+
+    public void testOpenFileDescriptor_worksWithValidFileName() {
+        for (String fileName : ALLOWED_FILES) {
+            final Uri uri = Uri.parse(URI_PREFIX + fileName);
+            try {
+                mResolver.openFileDescriptor(uri, "r");
+            } catch (FileNotFoundException e) {
+
+            }
+        }
+    }
+
+    public void testQuery_throwsErrorWithIllegalFileName() {
+        for (String fileName : NOT_ALLOWED_FILES) {
+            final Uri uri = Uri.parse(URI_PREFIX + fileName);
+            assertQueryThrowsError(uri);
+        }
+    }
+
+    public void testQuery_worksWithValidFileName() {
+        for (String fileName : ALLOWED_FILES) {
+            final Uri uri = Uri.parse(URI_PREFIX + fileName);
+            mResolver.query(uri, null, null, null, null);
+        }
+    }
+
+    private void assertQueryThrowsError(Uri uri) {
+        try {
+            mResolver.query(uri, null, null, null, null);
+        } catch (IllegalArgumentException e) {
+            // pass
+            return;
+        }
+
+        fail("IllegalArgumentException expected but not thrown.");
+    }
+
+    private void assertOpenFileDescriptorThrowsError(Uri uri) {
+        try {
+            mResolver.openFileDescriptor(uri, "r");
+        } catch (IllegalArgumentException e) {
+            // pass
+            return;
+        } catch (FileNotFoundException e) {
+
+        }
+
+        fail("IllegalArgumentException expected but not thrown.");
+    }
+}
diff --git a/tests/tests/security/src/android/security/cts/ServicePermissionsTest.java b/tests/tests/security/src/android/security/cts/ServicePermissionsTest.java
index 45f3d51..5d7ff75 100644
--- a/tests/tests/security/src/android/security/cts/ServicePermissionsTest.java
+++ b/tests/tests/security/src/android/security/cts/ServicePermissionsTest.java
@@ -99,7 +99,8 @@
             try {
                 serviceBinder.dump(out.getFD(), new String[0]);
             } catch (SecurityException e) {
-                if (e.getMessage().contains("android.permission.DUMP")) {
+                String msg = e.getMessage();
+                if ((msg == null) || msg.contains("android.permission.DUMP")) {
                     // Service correctly checked for DUMP permission, yay
                 } else {
                     // Service is throwing about something else; they're
diff --git a/tests/tests/util/src/android/util/cts/DisplayMetricsTest.java b/tests/tests/util/src/android/util/cts/DisplayMetricsTest.java
index 821bb09..d7c1895 100644
--- a/tests/tests/util/src/android/util/cts/DisplayMetricsTest.java
+++ b/tests/tests/util/src/android/util/cts/DisplayMetricsTest.java
@@ -37,8 +37,8 @@
         assertEquals(0, outMetrics.widthPixels);
         assertEquals(0, outMetrics.heightPixels);
         // according to Android enmulator doc UI -scale confine density should between 0.1 to 3
-        assertTrue((0.1 < outMetrics.density) && (outMetrics.density < 3));
-        assertTrue((0.1 < outMetrics.scaledDensity) && (outMetrics.scaledDensity < 3));
+        assertTrue((0.1 <= outMetrics.density) && (outMetrics.density <= 3));
+        assertTrue((0.1 <= outMetrics.scaledDensity) && (outMetrics.scaledDensity <= 3));
         assertTrue(0 < outMetrics.xdpi);
         assertTrue(0 < outMetrics.ydpi);
 
@@ -49,8 +49,8 @@
         assertEquals(display.getHeight(), metrics.heightPixels);
         assertEquals(display.getWidth(), metrics.widthPixels);
         // according to Android enmulator doc UI -scale confine density should between 0.1 to 3
-        assertTrue((0.1 < metrics.density) && (metrics.density < 3));
-        assertTrue((0.1 < metrics.scaledDensity) && (metrics.scaledDensity < 3));
+        assertTrue((0.1 <= metrics.density) && (metrics.density <= 3));
+        assertTrue((0.1 <= metrics.scaledDensity) && (metrics.scaledDensity <= 3));
         assertTrue(0 < metrics.xdpi);
         assertTrue(0 < metrics.ydpi);
     }
diff --git a/tests/tests/view/src/android/view/cts/ViewTest.java b/tests/tests/view/src/android/view/cts/ViewTest.java
index 888bb73..0af3f21 100644
--- a/tests/tests/view/src/android/view/cts/ViewTest.java
+++ b/tests/tests/view/src/android/view/cts/ViewTest.java
@@ -247,10 +247,11 @@
         Rect rect = new Rect();
         final Button button = new Button(mActivity);
         final int WRAP_CONTENT = ViewGroup.LayoutParams.WRAP_CONTENT;
+        final int btnHeight = view.getHeight()/3;
         runTestOnUiThread(new Runnable() {
             public void run() {
                 mActivity.addContentView(button,
-                        new LinearLayout.LayoutParams(WRAP_CONTENT, WRAP_CONTENT));
+                        new LinearLayout.LayoutParams(WRAP_CONTENT, btnHeight));
             }
         });
         getInstrumentation().waitForIdleSync();
diff --git a/tests/tests/view/src/android/view/inputmethod/cts/InputMethodInfoTest.java b/tests/tests/view/src/android/view/inputmethod/cts/InputMethodInfoTest.java
index 00a8dea..722c1b3 100644
--- a/tests/tests/view/src/android/view/inputmethod/cts/InputMethodInfoTest.java
+++ b/tests/tests/view/src/android/view/inputmethod/cts/InputMethodInfoTest.java
@@ -16,7 +16,6 @@
 
 package android.view.inputmethod.cts;
 
-
 import android.content.ComponentName;
 import android.content.Intent;
 import android.content.pm.PackageManager;
@@ -27,6 +26,7 @@
 import android.util.Printer;
 import android.view.inputmethod.InputMethod;
 import android.view.inputmethod.InputMethodInfo;
+import android.view.inputmethod.InputMethodSubtype;
 
 import org.xmlpull.v1.XmlPullParserException;
 
@@ -40,14 +40,40 @@
     private CharSequence mLabel;
     private String mSettingsActivity;
 
+    private int mSubtypeNameResId;
+    private int mSubtypeIconResId;
+    private String mSubtypeLocale;
+    private String mSubtypeMode;
+    private String mSubtypeExtraValue_key;
+    private String mSubtypeExtraValue_value;
+    private String mSubtypeExtraValue;
+    private boolean mSubtypeIsAuxiliary;
+    private boolean mSubtypeOverridesImplicitlyEnabledSubtype;
+    private int mSubtypeId;
+    private InputMethodSubtype mInputMethodSubtype;
+
     @Override
     protected void setUp() throws Exception {
         super.setUp();
         mPackageName = mContext.getPackageName();
-        mClassName = InputMethodInfoStub.class.getName();
+        mClassName = InputMethodSettingsActivityStub.class.getName();
         mLabel = "test";
-        mSettingsActivity = "android.view.inputmethod.cts.InputMethodInfoStub";
+        mSettingsActivity = "android.view.inputmethod.cts.InputMethodSettingsActivityStub";
         mInputMethodInfo = new InputMethodInfo(mPackageName, mClassName, mLabel, mSettingsActivity);
+
+        mSubtypeNameResId = 0;
+        mSubtypeIconResId = 0;
+        mSubtypeLocale = "en_US";
+        mSubtypeMode = "keyboard";
+        mSubtypeExtraValue_key = "key1";
+        mSubtypeExtraValue_value = "value1";
+        mSubtypeExtraValue = "tag," + mSubtypeExtraValue_key + "=" + mSubtypeExtraValue_value;
+        mSubtypeIsAuxiliary = false;
+        mSubtypeOverridesImplicitlyEnabledSubtype = false;
+        mSubtypeId = 99;
+        mInputMethodSubtype = new InputMethodSubtype(mSubtypeNameResId, mSubtypeIconResId,
+                mSubtypeLocale, mSubtypeMode, mSubtypeExtraValue, mSubtypeIsAuxiliary,
+                mSubtypeOverridesImplicitlyEnabledSubtype, mSubtypeId);
     }
 
     public void testInputMethodInfoProperties() throws XmlPullParserException, IOException {
@@ -58,7 +84,7 @@
         assertEquals(0, mInputMethodInfo.getIsDefaultResourceId());
 
         Intent intent = new Intent(InputMethod.SERVICE_INTERFACE);
-        intent.setClass(mContext, InputMethodInfoStub.class);
+        intent.setClass(mContext, InputMethodSettingsActivityStub.class);
         PackageManager pm = mContext.getPackageManager();
         List<ResolveInfo> ris = pm.queryIntentServices(intent, PackageManager.GET_META_DATA);
         for (int i = 0; i < ris.size(); i++) {
@@ -69,6 +95,22 @@
         }
     }
 
+    public void testInputMethodSubtypeProperties() {
+        // TODO: Test InputMethodSubtype.getDisplayName()
+        assertEquals(mSubtypeNameResId, mInputMethodSubtype.getNameResId());
+        assertEquals(mSubtypeIconResId, mInputMethodSubtype.getIconResId());
+        assertEquals(mSubtypeLocale, mInputMethodSubtype.getLocale());
+        assertEquals(mSubtypeMode, mInputMethodSubtype.getMode());
+        assertEquals(mSubtypeExtraValue, mInputMethodSubtype.getExtraValue());
+        assertTrue(mInputMethodSubtype.containsExtraValueKey(mSubtypeExtraValue_key));
+        assertEquals(mSubtypeExtraValue_value,
+                mInputMethodSubtype.getExtraValueOf(mSubtypeExtraValue_key));
+        assertEquals(mSubtypeIsAuxiliary, mInputMethodSubtype.isAuxiliary());
+        assertEquals(mSubtypeOverridesImplicitlyEnabledSubtype,
+                mInputMethodSubtype.overridesImplicitlyEnabledSubtype());
+        assertEquals(mSubtypeId, mInputMethodSubtype.hashCode());
+    }
+
     private void assertService(ServiceInfo expected, ServiceInfo actual) {
         assertEquals(expected.getIconResource(), actual.getIconResource());
         assertEquals(expected.labelRes, actual.labelRes);
@@ -110,19 +152,39 @@
         assertEquals(expected.toString(), mInputMethodInfo.loadLabel(pm).toString());
     }
 
-    public void testWriteToParcel() {
-        Parcel p = Parcel.obtain();
+    public void testInputMethodInfoWriteToParcel() {
+        final Parcel p = Parcel.obtain();
         mInputMethodInfo.writeToParcel(p, 0);
         p.setDataPosition(0);
-        InputMethodInfo inputMethodInfo = InputMethodInfo.CREATOR.createFromParcel(p);
+        final InputMethodInfo imi = InputMethodInfo.CREATOR.createFromParcel(p);
 
-        assertEquals(mInputMethodInfo.getPackageName(), inputMethodInfo.getPackageName());
-        assertEquals(mInputMethodInfo.getServiceName(), inputMethodInfo.getServiceName());
-        assertEquals(mInputMethodInfo.getSettingsActivity(), inputMethodInfo.getSettingsActivity());
-        assertEquals(mInputMethodInfo.getId(), inputMethodInfo.getId());
-        assertEquals(mInputMethodInfo.getIsDefaultResourceId(), inputMethodInfo
-                .getIsDefaultResourceId());
-        assertService(mInputMethodInfo.getServiceInfo(), inputMethodInfo.getServiceInfo());
+        assertEquals(mInputMethodInfo.getPackageName(), imi.getPackageName());
+        assertEquals(mInputMethodInfo.getServiceName(), imi.getServiceName());
+        assertEquals(mInputMethodInfo.getSettingsActivity(), imi.getSettingsActivity());
+        assertEquals(mInputMethodInfo.getId(), imi.getId());
+        assertEquals(mInputMethodInfo.getIsDefaultResourceId(), imi.getIsDefaultResourceId());
+        assertService(mInputMethodInfo.getServiceInfo(), imi.getServiceInfo());
+    }
+
+    public void testInputMethodSubtypeWriteToParcel() {
+        final Parcel p = Parcel.obtain();
+        mInputMethodSubtype.writeToParcel(p, 0);
+        p.setDataPosition(0);
+        final InputMethodSubtype subtype = InputMethodSubtype.CREATOR.createFromParcel(p);
+
+        assertEquals(mInputMethodSubtype.containsExtraValueKey(mSubtypeExtraValue_key),
+                subtype.containsExtraValueKey(mSubtypeExtraValue_key));
+        assertEquals(mInputMethodSubtype.getExtraValue(), subtype.getExtraValue());
+        assertEquals(mInputMethodSubtype.getExtraValueOf(mSubtypeExtraValue_key),
+                subtype.getExtraValueOf(mSubtypeExtraValue_key));
+        assertEquals(mInputMethodSubtype.getIconResId(), subtype.getIconResId());
+        assertEquals(mInputMethodSubtype.getLocale(), subtype.getLocale());
+        assertEquals(mInputMethodSubtype.getMode(), subtype.getMode());
+        assertEquals(mInputMethodSubtype.getNameResId(), subtype.getNameResId());
+        assertEquals(mInputMethodSubtype.hashCode(), subtype.hashCode());
+        assertEquals(mInputMethodSubtype.isAuxiliary(), subtype.isAuxiliary());
+        assertEquals(mInputMethodSubtype.overridesImplicitlyEnabledSubtype(),
+                subtype.overridesImplicitlyEnabledSubtype());
     }
 
     class MockPrinter implements Printer {
diff --git a/tests/uiautomator/src/com/android/cts/uiautomatortest/CtsUiAutomatorTest.java b/tests/uiautomator/src/com/android/cts/uiautomatortest/CtsUiAutomatorTest.java
index 5de9805..5885315 100644
--- a/tests/uiautomator/src/com/android/cts/uiautomatortest/CtsUiAutomatorTest.java
+++ b/tests/uiautomator/src/com/android/cts/uiautomatortest/CtsUiAutomatorTest.java
@@ -787,6 +787,12 @@
      * @throws UiObjectNotFoundException
      */
     private void openTest(String name) throws UiObjectNotFoundException {
+        try {
+            UiDevice.getInstance().setOrientationNatural();
+        } catch (RemoteException e) {
+            // will catch it in its own test. For now try to put the device
+            // in its natural orientation prior to each test
+        }
         UiScrollable listView = new UiScrollable(
                 new UiSelector().className(android.widget.ListView.class.getName()));
 
diff --git a/tests/uiautomator/test-apps/CtsUiAutomatorApp/res/layout-land/test5_detail_fragment.xml b/tests/uiautomator/test-apps/CtsUiAutomatorApp/res/layout-land/test5_detail_fragment.xml
new file mode 100644
index 0000000..123ebde
--- /dev/null
+++ b/tests/uiautomator/test-apps/CtsUiAutomatorApp/res/layout-land/test5_detail_fragment.xml
@@ -0,0 +1,123 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!--
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ -->
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+    android:layout_width="match_parent"
+    android:layout_height="match_parent"
+    android:contentDescription="@string/test_5_Widgets_collection"
+    android:orientation="horizontal" >
+
+    <LinearLayout
+        android:layout_width="wrap_content"
+        android:layout_height="match_parent"
+        android:orientation="vertical" >
+
+        <CheckBox
+            android:id="@+id/test_5_checkBox"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:text="@string/test5_CheckBox" />
+
+        <Spinner
+            android:id="@+id/test_5_spinner"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content" />
+
+        <ProgressBar
+            android:id="@+id/test_5_progressBar"
+            style="?android:attr/progressBarStyleLarge"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content" />
+
+        <GridLayout
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:columnCount="3" >
+
+            <ImageButton
+                android:id="@+id/test_5_imageButton"
+                android:layout_column="0"
+                android:layout_gravity="left"
+                android:layout_row="0"
+                android:src="@drawable/ic_launcher" />
+
+            <RatingBar
+                android:id="@+id/test_5_ratingBar"
+                android:layout_column="1"
+                android:layout_columnSpan="2"
+                android:layout_gravity="left|bottom"
+                android:layout_row="0" />
+
+            <Button
+                android:id="@+id/test_5_button2"
+                style="?android:attr/buttonStyleSmall"
+                android:layout_width="wrap_content"
+                android:layout_height="wrap_content"
+                android:layout_gravity="left|bottom"
+                android:enabled="false"
+                android:layout_row="0"
+                android:text="@string/test5_Button_Disabled" />
+
+            <Space
+                android:layout_width="21dp"
+                android:layout_height="1dp"
+                android:layout_column="1"
+                android:layout_row="0" />
+
+            <Space
+                android:layout_width="1dp"
+                android:layout_height="21dp"
+                android:layout_column="0"
+                android:layout_row="0" />
+
+            <Space
+                android:layout_width="221dp"
+                android:layout_height="15dp"
+                android:layout_column="2"
+                android:layout_row="1" />
+
+            <ToggleButton
+                android:id="@+id/test_5_toggleButton"
+                android:layout_width="wrap_content"
+                android:layout_height="wrap_content"
+                android:layout_column="2"
+                android:text="@string/test5_ToggleButton" />
+        </GridLayout>
+
+    </LinearLayout>
+
+    <LinearLayout
+        android:layout_width="match_parent"
+        android:layout_height="match_parent"
+        android:orientation="vertical" >
+
+        <SeekBar
+            android:id="@+id/test_5_seekBar"
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content" />
+
+        <Button
+            android:id="@+id/test_5_button1"
+            style="?android:attr/buttonStyleSmall"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:contentDescription="@string/test5_Button_Description"
+            android:text="@string/test5_Button" />
+
+    </LinearLayout>
+
+</LinearLayout>
diff --git a/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/DeviceInfoConstants.java b/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/DeviceInfoConstants.java
index c06c21e..f251360 100644
--- a/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/DeviceInfoConstants.java
+++ b/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/DeviceInfoConstants.java
@@ -23,11 +23,14 @@
  */
 public interface DeviceInfoConstants {
 
+    public static final String OPEN_GL_EXTENSIONS = "openGlExtensions";
     public static final String OPEN_GL_COMPRESSED_TEXTURE_FORMATS =
             "openGlCompressedTextureFormats";
     public static final String SYS_LIBRARIES = "systemlibraries";
     public static final String PARTITIONS = "partitions";
     public static final String OPEN_GL_ES_VERSION = "openGlEsVersion";
+    public static final String GRAPHICS_VENDOR = "graphicsVendor";
+    public static final String GRAPHICS_RENDERER = "graphicsRenderer";
     public static final String PROCESSES = "processes";
     public static final String FEATURES = "features";
     public static final String PHONE_NUMBER = "subscriberId";
diff --git a/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/GLESSurfaceView.java b/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/GLESSurfaceView.java
index 0ec11b7..792a5f2 100644
--- a/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/GLESSurfaceView.java
+++ b/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/GLESSurfaceView.java
@@ -55,17 +55,27 @@
         @Override
         public void onSurfaceCreated(GL10 gl, EGLConfig config) {
             String extensions;
+            String vendor;
+            String renderer;
             if (mUseGL20) {
                 extensions = GLES20.glGetString(GLES20.GL_EXTENSIONS);
+                vendor = GLES20.glGetString(GLES20.GL_VENDOR);
+                renderer = GLES20.glGetString(GLES20.GL_RENDERER);
             } else {
                 extensions = gl.glGetString(GL10.GL_EXTENSIONS);
+                vendor = gl.glGetString(GL10.GL_VENDOR);
+                renderer = gl.glGetString(GL10.GL_RENDERER);
             }
             Log.i(TAG, "extensions : " + extensions);
+            Log.i(TAG, "vendor : " + vendor);
+            Log.i(TAG, "renderer : " + renderer);
             Scanner scanner = new Scanner(extensions);
             scanner.useDelimiter(" ");
+            StringBuilder extensionsBuilder = new StringBuilder();
             StringBuilder builder = new StringBuilder();
             while (scanner.hasNext()) {
                 String ext = scanner.next();
+                extensionsBuilder.append(ext).append(";");
                 if (ext.contains("texture")) {
                     if (ext.contains("compression") || ext.contains("compressed")) {
                         Log.i(TAG, "Compression supported: " + ext);
@@ -78,6 +88,15 @@
             DeviceInfoInstrument.addResult(
                     DeviceInfoConstants.OPEN_GL_COMPRESSED_TEXTURE_FORMATS,
                     builder.toString());
+            DeviceInfoInstrument.addResult(
+                    DeviceInfoConstants.OPEN_GL_EXTENSIONS,
+                    extensionsBuilder.toString());
+            DeviceInfoInstrument.addResult(
+                    DeviceInfoConstants.GRAPHICS_VENDOR,
+                    vendor);
+            DeviceInfoInstrument.addResult(
+                    DeviceInfoConstants.GRAPHICS_RENDERER,
+                    renderer);
 
             mDone.countDown();
         }
@@ -93,4 +112,4 @@
         }
 
     }
-}
\ No newline at end of file
+}
diff --git a/tools/tradefed-host/src/com/android/cts/tradefed/build/CtsBuildProvider.java b/tools/tradefed-host/src/com/android/cts/tradefed/build/CtsBuildProvider.java
index 6674bdf..d9baf81 100644
--- a/tools/tradefed-host/src/com/android/cts/tradefed/build/CtsBuildProvider.java
+++ b/tools/tradefed-host/src/com/android/cts/tradefed/build/CtsBuildProvider.java
@@ -31,7 +31,7 @@
     @Option(name="cts-install-path", description="the path to the cts installation to use")
     private String mCtsRootDirPath = System.getProperty("CTS_ROOT");
 
-    public static final String CTS_BUILD_VERSION = "4.2_r1";
+    public static final String CTS_BUILD_VERSION = "4.2_r5";
 
     /**
      * {@inheritDoc}
diff --git a/tools/tradefed-host/src/com/android/cts/tradefed/result/DeviceInfoResult.java b/tools/tradefed-host/src/com/android/cts/tradefed/result/DeviceInfoResult.java
index 56b3913..ce228c7 100644
--- a/tools/tradefed-host/src/com/android/cts/tradefed/result/DeviceInfoResult.java
+++ b/tools/tradefed-host/src/com/android/cts/tradefed/result/DeviceInfoResult.java
@@ -53,6 +53,10 @@
     private static final String OPENGL_TEXTURE_FORMAT_TAG = "TextureFormat";
     private static final String OPENGL_TEXTURE_FORMAT_DELIM = ";";
 
+    private static final String OPENGL_EXTENSIONS_TAG = "OpenGlExtensions";
+    private static final String OPENGL_EXTENSION_TAG = "OpenGlExtension";
+    private static final String OPENGL_EXTENSION_DELIM = ";";
+
     private static final String SYSLIB_INFO_TAG = "SystemLibrariesInfo";
     private static final String SYSLIB_TAG = "Library";
     private static final String SYSLIB_DELIM = ";";
@@ -73,47 +77,50 @@
     public void serialize(KXmlSerializer serializer) throws IOException {
         serializer.startTag(ns, TAG);
 
-        if (!mMetrics.isEmpty()) {
-
-            // Extract metrics that need extra handling, and then dump the remainder into BuildInfo
-            Map<String, String> metricsCopy = new HashMap<String, String>(mMetrics);
-            serializer.startTag(ns, SCREEN_TAG);
-            serializer.attribute(ns, DeviceInfoConstants.RESOLUTION,
-                    getMetric(metricsCopy, DeviceInfoConstants.RESOLUTION));
-            serializer.attribute(ns, DeviceInfoConstants.SCREEN_DENSITY,
-                    getMetric(metricsCopy, DeviceInfoConstants.SCREEN_DENSITY));
-            serializer.attribute(ns, DeviceInfoConstants.SCREEN_DENSITY_BUCKET,
-                    getMetric(metricsCopy, DeviceInfoConstants.SCREEN_DENSITY_BUCKET));
-            serializer.attribute(ns, DeviceInfoConstants.SCREEN_SIZE,
-                    getMetric(metricsCopy, DeviceInfoConstants.SCREEN_SIZE));
-            serializer.endTag(ns, SCREEN_TAG);
-
-            serializer.startTag(ns, PHONE_TAG);
-            serializer.attribute(ns, DeviceInfoConstants.PHONE_NUMBER,
-                    getMetric(metricsCopy, DeviceInfoConstants.PHONE_NUMBER));
-            serializer.endTag(ns, PHONE_TAG);
-
-            String featureData = getMetric(metricsCopy, DeviceInfoConstants.FEATURES);
-            String processData = getMetric(metricsCopy, DeviceInfoConstants.PROCESSES);
-            String sysLibData = getMetric(metricsCopy, DeviceInfoConstants.SYS_LIBRARIES);
-            String textureData = getMetric(metricsCopy,
-                    DeviceInfoConstants.OPEN_GL_COMPRESSED_TEXTURE_FORMATS);
-
-            // dump the remaining metrics without translation
-            serializer.startTag(ns, BUILD_TAG);
-            for (Map.Entry<String, String> metricEntry : metricsCopy.entrySet()) {
-                serializer.attribute(ns, metricEntry.getKey(), metricEntry.getValue());
-            }
-            serializer.endTag(ns, BUILD_TAG);
-
-            serializeFeatureInfo(serializer, featureData);
-            serializeProcessInfo(serializer, processData);
-            serializeSystemLibrariesInfo(serializer, sysLibData);
-            serializeOpenGLCompressedTextureFormatsInfo(serializer, textureData);
-        } else {
+        if (mMetrics.isEmpty()) {
             // this might be expected, if device info collection was turned off
             CLog.d("Could not find device info");
+            serializer.endTag(ns, TAG);
+            return;
         }
+
+        // Extract metrics that need extra handling, and then dump the remainder into BuildInfo
+        Map<String, String> metricsCopy = new HashMap<String, String>(mMetrics);
+        serializer.startTag(ns, SCREEN_TAG);
+        serializer.attribute(ns, DeviceInfoConstants.RESOLUTION,
+                getMetric(metricsCopy, DeviceInfoConstants.RESOLUTION));
+        serializer.attribute(ns, DeviceInfoConstants.SCREEN_DENSITY,
+                getMetric(metricsCopy, DeviceInfoConstants.SCREEN_DENSITY));
+        serializer.attribute(ns, DeviceInfoConstants.SCREEN_DENSITY_BUCKET,
+                getMetric(metricsCopy, DeviceInfoConstants.SCREEN_DENSITY_BUCKET));
+        serializer.attribute(ns, DeviceInfoConstants.SCREEN_SIZE,
+                getMetric(metricsCopy, DeviceInfoConstants.SCREEN_SIZE));
+        serializer.endTag(ns, SCREEN_TAG);
+
+        serializer.startTag(ns, PHONE_TAG);
+        serializer.attribute(ns, DeviceInfoConstants.PHONE_NUMBER,
+                getMetric(metricsCopy, DeviceInfoConstants.PHONE_NUMBER));
+        serializer.endTag(ns, PHONE_TAG);
+
+        String featureData = getMetric(metricsCopy, DeviceInfoConstants.FEATURES);
+        String processData = getMetric(metricsCopy, DeviceInfoConstants.PROCESSES);
+        String sysLibData = getMetric(metricsCopy, DeviceInfoConstants.SYS_LIBRARIES);
+        String textureData = getMetric(metricsCopy,
+                DeviceInfoConstants.OPEN_GL_COMPRESSED_TEXTURE_FORMATS);
+        String openGlExtensionData = getMetric(metricsCopy,
+                    DeviceInfoConstants.OPEN_GL_EXTENSIONS);
+        // dump the remaining metrics without translation
+        serializer.startTag(ns, BUILD_TAG);
+        for (Map.Entry<String, String> metricEntry : metricsCopy.entrySet()) {
+            serializer.attribute(ns, metricEntry.getKey(), metricEntry.getValue());
+        }
+        serializer.endTag(ns, BUILD_TAG);
+
+        serializeFeatureInfo(serializer, featureData);
+        serializeProcessInfo(serializer, processData);
+        serializeSystemLibrariesInfo(serializer, sysLibData);
+        serializeOpenGLCompressedTextureFormatsInfo(serializer, textureData);
+        serializeOpenGLExtensions(serializer, openGlExtensionData);
         serializer.endTag(ns, TAG);
     }
 
@@ -148,6 +155,12 @@
                 OPENGL_TEXTURE_FORMAT_DELIM, null, formats, "name");
     }
 
+    private void serializeOpenGLExtensions(KXmlSerializer serializer, String extensions)
+            throws IOException {
+        serialize(serializer, OPENGL_EXTENSIONS_TAG, OPENGL_EXTENSION_TAG,
+                OPENGL_EXTENSION_DELIM, null, extensions, "name");
+    }
+
     private void serializeSystemLibrariesInfo(KXmlSerializer serializer, String libs)
             throws IOException {
         serialize(serializer, SYSLIB_INFO_TAG, SYSLIB_TAG, SYSLIB_DELIM, null, libs, "name");